我创建了此列表视图,只需单击项目即可选择参加特定课程的学生。 但我想通过从左到右滑动项目来选择项目。我怎么能这样做?
这里的代码是出勤活动.java
protected void onCreate(Bundle savedInstanceState) {
try {
setListAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_checked, new ArrayList()));
ListView listView = getListView();
listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
new AddStringTask().execute();
} catch (Exception e) {
Toast.makeText(getApplicationContext(), "Null", Toast.LENGTH_LONG)
.show();
}