さまざまなTABSを使用したアクティビティがあり、そのうちの1つにはSimpleCursorAdapterが入力された単一選択モードのListViewがあります。
Cursor c = db.listaPessoas(APRESENTACAO);
startManagingCursor(c);
SimpleCursorAdapter sca = new SimpleCursorAdapter(formPessoa.this,android.R.layout.select_dialog_singlechoice, c, new String[] {"nome"}, new int[] {android.R.id.text1});
pessoasInseridas.setAdapter(sca);
sca.notifyDataSetChanged();
問題は、別のタブに変更してListViewのあるタブに戻ると、ListViewの選択された項目が選択されなくなったことです(緑色のハイライトがラジオボタンから消えます)。ListViewのアイテムの状態を維持するにはどうすればよいですか?