如何创建列表视图,我们可以在其中滑动以选择项目?

时间:2014-03-27 08:21:20

标签: android listview

我创建了此列表视图,只需单击项目即可选择参加特定课程的学生。 但我想通过从左到右滑动项目来选择项目。我怎么能这样做? Attendance

这里的代码是出勤活动.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();
            }

0 个答案:

没有答案