Skip to content

Instantly share code, notes, and snippets.

@barmgeat
Created September 15, 2018 23:51
Show Gist options
  • Save barmgeat/d1af4dc31d966778cee4c5a90ce839b0 to your computer and use it in GitHub Desktop.
Save barmgeat/d1af4dc31d966778cee4c5a90ce839b0 to your computer and use it in GitHub Desktop.
public class WordCursorAdapter extends CursorAdapter{
Context context;
Cursor cursor;
public WordCursorAdapter(Context x, Cursor c){
super(x, c,0);
this.context = x;
this.cursor = c;
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup viewGroup) {
return null;
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment