Created
September 15, 2018 23:51
-
-
Save barmgeat/d1af4dc31d966778cee4c5a90ce839b0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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