Example usage for Java android.database MatrixCursor fields, constructors, methods, implement or subclass
The text is from its open source code.
MatrixCursor(String[] columnNames) Constructs a new cursor. | |
MatrixCursor(String[] columnNames, int initialCapacity) Constructs a new cursor with the given initial capacity. |
void | addRow(Object[] columnValues) Adds a new row to the end with the given column values. |
void | addRow(Iterable> columnValues) Adds a new row to the end with the given column values. |
void | close() |
int | getColumnIndex(String columnName) |
int | getCount() |
int | getInt(int column) |
String | getString(int column) |
boolean | moveToFirst() |
boolean | moveToNext() |
RowBuilder | newRow() Adds a new row to the end and returns a builder for that row. |
void | setExtras(Bundle extras) |
void | setNotificationUri(ContentResolver cr, Uri notifyUri) Specifies a content URI to watch for changes. |