private ListView LVmain;
private ArrayList<String> tasks = new ArrayList<String>();
private ArrayAdapter<String> adapter;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
adapter = new ArrayAdapter(this, android.R.layout.simple_list_item_multiple_choice, tasks);
tasks.add("first");
tasks.add("second");
tasks.add("thirst");
tasks.add("fourth");
adapter.notifyDataSetChanged();
}
所以我希望在启动程序时已经检查了第二项
答案 0 :(得分:1)
无论您将适配器分配给ListView
,请尝试以下操作:
LVmain.setItemChecked(1, true);
LVmain.setSelection(1);
请注意,我们传递1
来检查第二项,因为列表视图位置是从0开始的。