Skip to content

Instantly share code, notes, and snippets.

View BambangHeriSetiawan's full-sized avatar

Bambang Heri Setiawan BambangHeriSetiawan

View GitHub Profile
@rogerhu
rogerhu / Contact.java
Last active June 9, 2022 23:32
Endless scrolling with RecyclerVIew
package codepath.com.recyclerviewfun;
import java.util.ArrayList;
import java.util.List;
public class Contact {
private String mName;
private boolean mOnline;
public Contact(String name, boolean online) {