MatrixCursor represents a mutable Cursor in the Android platform which is backed by an array of Objects.
MatrixCursor
is a mutable cursor implementation on the Android platform. The MatrixCursor
requires that the developer must supply an array of String
s to its constructors representing the data columns names. Data can be added to the MatrixCursor
either by using one of the newRow()
, addRow()
's methods or by using its static RowBuilder
class. More information can be found in the documentation of the class.