1

这是我用来从数据库动态加载数据的代码,但我没有得到如何动态检查或取消选中复选框?这是我正在使用的代码。

String[] from = new String[]{"ToDisplay","MblNo", "_id"};

        // and an array of the fields we want to bind those fields to (in this case just tvViewRow)
        int[] to = new int[]{R.id.tvViewRow};


        // Now create a simple cursor adapter and set it to display
        SimpleCursorAdapter cursor = new SimpleCursorAdapter(this, R.layout.white_row, coloursCursor, from, to);

        setListAdapter(cursor);
        Cursor curs = DisplayWhiteAddress();
        curs.moveToFirst();
        int i=0;
        while(!curs.isAfterLast()){
            String s=""+curs.getString(2);

            myArrayList.add(i, s);
            s=""+curs.getString(0);

            myNumberList.add(i, s);
            ListIndices.add(i,Integer.parseInt(""+curs.getString(0)));

            curs.moveToNext();
            i++;
        }
4

2 回答 2

1

您可以使用以下方法:

cb.setChecked(true);
cb.setChecked(false);

检查/取消检查检查。如果您可以向我们解释您的复选框在哪里...

于 2012-10-22T14:25:04.850 回答
0

我在您的代码中没有看到任何复选框。但是当在您的代码中您知道是否应该检查您的复选框时,然后使用复选框对象的“setSelected(Boolean)”方法来设置它。

在这里检查:http: //developer.android.com/reference/android/widget/TextView.html#setSelected%28boolean%29

于 2012-10-22T13:54:06.320 回答