如何激活列表活动中的复选标记?

时间:2010-02-05 04:11:31

标签: android listactivity android-arrayadapter checkmark

我有一个ListActivity,其数组适配器声明为arrayAdapter = new ArrayAdapter<String> (this, android.R.layout.simple_list_item_checked);这显示了一组最右边有复选标记的行。你能告诉我如何获得这些复选标记的引用或如何检查/取消选中它们吗?

3 个答案:

答案 0 :(得分:8)

CheckedTextView本身处理复选框。它作为onListItemClick处理程序中的第二个参数(View v)传入。因此,您可以按如下方式简化代码:

@Override
protected void onListItemClick( ListView l, View v, int position, long id)
{
  CheckedTextView textView = (CheckedTextView)v;
  textView.setChecked(!textView.isChecked());
}

答案 1 :(得分:2)

我遇到了类似的问题并尝试了此处提供的解决方案,但我仍然遇到了很多问题。 我只想要一个带有可选“测试用例”的列表和两个按钮“选择所有测试”和“运行选定的测试”(因此我不想只有一个ListActivity)。 正如“JDC” getChildAt (和getChildCount)所述,请参考当前显示的项目,但我的列表不适合屏幕,因此我无法使用它选择所有列表项。 另外,如果我使用 CheckedTextView setChecked ,我遇到的问题是,只要我滚动列表,选择就会消失。 我的解决方案是下面的代码,通过使用 ListView getCount setItemChecked 来解决这些问题(另请参阅源代码中的注释)。此外,它还显示了如何检索已检查的项目。

package com.example.test;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.util.SparseBooleanArray;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.CheckedTextView;
import android.widget.ListView;

public class TestActivity extends Activity {

    static final String[] names = new String[] { "Test 1", "Test 2", "Test 3", "Test 4", "Test 5", "Test 6", "Test 7", "Test 8", "Test 9", "Test 10"};
    ListView list;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        // Create an ArrayAdapter, that will actually make the Strings above
        // appear in the ListView
        list = (ListView)findViewById(R.id.listOfTests);
        list.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_multiple_choice, names));
    }

// This does not work.
// 1st: it checks only the displayed items
// 2nd: as soon as you scroll the list the selections are undone
//
//    public void onRunAllTestsClick (View view) {
//      int count = list.getChildCount();
//      for (int i = 0; i < count; i++)
//          ((CheckedTextView)list.getChildAt(i)).setChecked(true);
//    }

    // This is the solution
    // 1st: getCount deliveres the count of all list items (even if they are not displayed)
    // 2nd: calling setItemChecked on the ListView ensures that the ListView "knows" that the item is checked and does not destroy it if you scroll the list
    public void onRunAllTestsClick (View view) {
        int count = list.getCount();
        for (int i = 0; i < count; i++)
            list.setItemChecked(i, true);
    }

    public void onRunSelectedTestsClick (View view) {
        SparseBooleanArray resultArray = list.getCheckedItemPositions();
        int size = resultArray.size();
        for (int i = 0; i < size; i++)
            if (resultArray.valueAt(i))
                Log.i("CodecTestActivity", list.getAdapter().getItem(resultArray.keyAt(i)).toString());
    }
}

这里也是适当的布局(main.xml):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <LinearLayout android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/linearLayout1">
        <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="onRunSelectedTestsClick" android:id="@+id/RunSelectedTestsClick" android:text="@string/runselectedtests"></Button>
        <Button android:text="@string/runalltests" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="onRunAllTestsClick" android:id="@+id/RunAllTests"></Button>
    </LinearLayout>
    <ListView android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/listOfTests" android:choiceMode="multipleChoice"></ListView>
</LinearLayout>

答案 2 :(得分:0)

我能做的最接近的是在点击单元格后更改复选标记:

@Override
protected void onListItemClick( ListView l, View v, int position, long id)
{
  CheckedTextView textView = (CheckedTextView)l.getChildAt(position);
  text.setChecked(!textView.isChecked());

  super.onListItemClick (l, v, position, id);
}

我仍然希望能够在没有用户触摸任何单元格的情况下设置复选标记。