我有一个包含各种 TABS 的活动,其中一个有一个单选模式 ListView,它填充了一个 SimpleCursorAdapter。
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 上保持项目的状态?