0

在过去的几个小时里,我一直在阅读教程和论坛帖子,以尝试实现一个简单的复选框列表视图。

我了解(我相信)我需要如何维护列表中复选框的状态(在我的情况下为地图)。

我确信这是一件非常简单的事情,但我的复选框没有在我的 bindView 方法中设置为 true 或 false。这是代码

public void bindView(View view, Context context, Cursor cursor) {
        final int rowId = cursor.getInt(cursor.getColumnIndexOrThrow("_id"));

        familyText = (TextView)view.findViewById(R.id.contacts_row_family_name);
        markedBox = (CheckBox)view.findViewById(R.id.contacts_row_check);
        familyText.setText(cursor.getString(cursor.getColumnIndexOrThrow(ContactsContract.Contacts.DISPLAY_NAME)));



        view.setOnClickListener(new OnClickListener(){

            public void onClick(View arg0) {
                Log.d("OnClick","Row clicked");
                boolean currentlyChecked;

                if(checkedState.size() >= rowId){
                    currentlyChecked = checkedState.get(rowId);
                    checkedState.put(rowId, !currentlyChecked);
                }else{
                    currentlyChecked = false;
                    checkedState.put(rowId, !currentlyChecked);
                }

                markedBox.setChecked(checkedState.get(rowId));

            }

        });

        setProgressBarIndeterminateVisibility(false);


    }

这是checkedState的声明。这是我的活动的班级成员。

private Map<Integer, Boolean> checkedState = new HashMap<Integer,Boolean>();

据我所知,我应该在行上有一个侦听器(这是因为我的日志消息打印正确),但复选框没有改变。

4

1 回答 1

0

更新:

我的复选框没有被选中是不正确的。只是检查错了。我将关闭这个问题。

于 2012-09-02T10:05:37.387 回答