Java android.database MatrixCursor fields, constructors, methods, implement or subclass

Example usage for Java android.database MatrixCursor fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.database MatrixCursor.

The text is from its open source code.

Constructor

MatrixCursor(String[] columnNames)
Constructs a new cursor.
MatrixCursor(String[] columnNames, int initialCapacity)
Constructs a new cursor with the given initial capacity.

Method

voidaddRow(Object[] columnValues)
Adds a new row to the end with the given column values.
voidaddRow(Iterable columnValues)
Adds a new row to the end with the given column values.
voidclose()
intgetColumnIndex(String columnName)
intgetCount()
intgetInt(int column)
StringgetString(int column)
booleanmoveToFirst()
booleanmoveToNext()
RowBuildernewRow()
Adds a new row to the end and returns a builder for that row.
voidsetExtras(Bundle extras)
voidsetNotificationUri(ContentResolver cr, Uri notifyUri)
Specifies a content URI to watch for changes.