Skip to content

Instantly share code, notes, and snippets.

View artzmb's full-sized avatar
Working from home

Artem Nikonov artzmb

Working from home
View GitHub Profile
@artzmb
artzmb / Contact.java
Created December 5, 2015 23:02 — forked from rogerhu/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) {