Skip to content

Instantly share code, notes, and snippets.

View tr4n's full-sized avatar

Quang Huy Tran tr4n

View GitHub Profile
@tr4n
tr4n / Contact.java
Created May 13, 2018 09:00 — forked from nesquena/Contact.java
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) {