Skip to content

Instantly share code, notes, and snippets.

View brindy's full-sized avatar
🪂

Christopher Brind brindy

🪂
View GitHub Profile
@brindy
brindy / SampleListAdapter.java
Created May 6, 2009 20:20
A sample custom ListAdapter for Android
setListAdapter(new BaseAdapter() {
public int getCount() {
return expenses.size();
}
public Object getItem(int position) {
return expenses.get(position);
}