Hee guys,
I got 2 ListViews
, one for the left side and one for the right side. However I have one Cursor
with values. Now I want to get the even rows from the cursor and put that in a matrixcursor
to fill the left ListView
and with the odds I want to fill the right side.
However i got like 9 columns, is there anyway to just put the whole row into a matrixCursor
without selecting each column by itself? So that when something changes about the db or anything I dont have to manually adjust the columns.
Maybe I could just use a Cursor instead of a MatrixCursor
, which would be better?
Solution: