Example usage for Java android.widget CursorAdapter fields, constructors, methods, implement or subclass
The text is from its open source code.
int | FLAG_AUTO_REQUERY If set the adapter will call requery() on the cursor whenever a content change notification is delivered. |
int | FLAG_REGISTER_CONTENT_OBSERVER If set the adapter will register a content observer on the cursor and will call #onContentChanged() when a notification comes in. |
CursorAdapter(Context context, Cursor c, boolean autoRequery) Constructor that allows control over auto-requery. | |
CursorAdapter(Context context, Cursor c, int flags) Recommended constructor. | |
CursorAdapter(Context context, Cursor c) Constructor that always enables auto-requery. |
Cursor | getCursor() Returns the cursor. |
Cursor | swapCursor(Cursor newCursor) Swap in a new Cursor, returning the old Cursor. |