I’m writing an edit window for an SQLite DB row. In it there’s an Array line that I’m populating into a “simple_list_item_multiple_choice” ListView. I’d like for the CheckMarks in the view that have been selected previously be re-selected when the list fills.
My question is, is there a way that I can either inflate a ListView to retrieve the TextViews to convert toString() or a way to iterate though the Cursor to get the results so I can whip up a for loop for the – ListView.setItemChecked(i , true);
I got it, in case anyone else has this problem