Example usage for Java android.widget SimpleCursorAdapter fields, constructors, methods, implement or subclass
The text is from its open source code.
SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to, int flags) Standard constructor. | |
SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) Constructor the enables auto-requery. |
int | getCount() |
Cursor | getCursor() Returns the cursor. |
Object | getItem(int position) |
void | notifyDataSetChanged() Notifies the attached observers that the underlying data has been changed and any View reflecting the data set should refresh itself. |
void | setDropDownViewResource(int dropDownLayout) Sets the layout resource of the drop down views. |
void | setFilterQueryProvider(FilterQueryProvider filterQueryProvider) Sets the query filter provider used to filter the current Cursor. |
void | setStringConversionColumn(int stringConversionColumn) Defines the index of the column in the Cursor used to get a String representation of that Cursor. |
void | setViewBinder(ViewBinder viewBinder) Sets the binder used to bind data to views. |