Skip to content

Instantly share code, notes, and snippets.

View amjadoof's full-sized avatar
🏠
Working from home

amjadoof

🏠
Working from home
View GitHub Profile
@amjadoof
amjadoof / Contact.java
Created August 12, 2017 18:09 — 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) {