1

我有一个:

public class MyList extends ListActivity {
    SimpleAdapter simpleAdapter;

绑定到ListView由 a 完成ViewBinder

    simpleAdapter = new SimpleAdapter(this, getData(path),
            R.layout.menu_row, new String[] { 
        ..., "checked" }, new int[] {..., R.id.checkBox1 });

    SimpleAdapter.ViewBinder viewBinder = new SimpleAdapter.ViewBinder() {
        @Override
        public boolean setViewValue(View view, Object data,
                String textRepresentation) {
            if (view.getId() == R.id.checkBox1) {
                                CheckBox checkBox = (CheckBox) view;
                checkBox.setChecked(Boolean.parseBoolean((String) data));

我的 xml 看起来像这样,clickablefocusable有助于将行视为一个。

<CheckBox
    android:id="@+id/checkBox1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:focusable="false"
    android:clickable="false"
    android:focusableInTouchMode="false"
     />

我还有一个:

protected void onListItemClick(ListView l, View v, int position, long id) {

它与点击事件交互。到目前为止效果很好,我的问题是当我点击一行时,CheckBox它不会改变它的视觉状态。我能做些什么?

4

2 回答 2

1

我认为您要查看的是CheckedTextView显示复选框的内容,单击列表项时复选框会更改

于 2012-05-18T20:41:05.237 回答
0

在您的 onListItemClick 中放入一个button.setChecked(true)(或使用 setChecked 来回切换的代码)。

编辑

误解了你的问题。您是否告诉适配器数据集已更改?

于 2012-05-18T21:11:56.457 回答