使用自定义适配器在ListView中复选框刷新问题

时间:2011-12-09 00:03:29

标签: android

我有一个列表视图,每个项目由一组Textviews和一个CheckBox组成。 我正在将数据库的状态存储在数据库中,并从clickListener上更新它。对于可见的控件,它可以正常工作。默认情况下,所有复选框都处于选中状态。

如果有10个项目且屏幕可以容纳7个,那么当我取消选中第一个并滚动到第10个项目并再次滚动回第一个项目时。第一个失去其状态(再次检查)。我检查了DB的行状态,这是正确反映的。但是BindView中的获取总是让我错误的状态。我无法确定问题所在。我已经附上了列表适配器以供审查...

//列出适配器代码

公共类ListAdaptor扩展了CursorAdapter {

private LayoutInflater mInflater;
Cursor  dataCursor;
Context context;
ListView mLv;

private static final String TAG = "Delete";

public ListAdaptor(Context context, Cursor cursor, ListView lv) 
{
    super(context, cursor);
    this.context = context;
    mLv = lv;
    mInflater   = LayoutInflater.from(context);
}

@Override
public void bindView(View view, Context context, final Cursor cursor) {

    // Get the stored tag for the view

    CheckBox tmp_Chk    = (CheckBox)view.findViewById(R.id.chkbox);
    String selText = cursor.getString(11); 

    // Debug Message
    int val = cursor.getPosition();

    tmp_Chk.setChecked(false);

    SparseBooleanArray sba = mLv.getCheckedItemPositions();
    if(sba != null)
    if(sba.get(cursor.getPosition()))
        tmp_Chk.setChecked(true);
    }

    @Override
    public View newView(Context context, Cursor cursor, ViewGroup parent) 
    {
        View newView = mInflater.inflate(R.layout.listviewlyt, null);
        return newView;
    }

}

// Item layout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

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

</CheckBox>


<TextView
    android:id="@+id/label"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@+id/label"
    android:textSize="18sp"
    android:textColor="#000000" >
</TextView>



</LinearLayout>

// List control code in the Main Activity

lv.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {

    int lv_Pos = ListView.INVALID_POSITION;
    CheckBox tmp_Chk    = (CheckBox)view.findViewById(R.id.chkbox);
    if (lv_Pos != ListView.INVALID_POSITION) {
        if(tmp_Chk.isChecked()){
            Check_Uncheck(Integer.toString(lv_Pos + 1), 1);
    }
    else if(!tmp_Chk.isChecked()){
        Check_Uncheck(Integer.toString(lv_Pos + 1), 0);
    }   
}

public void Check_Uncheck(String deleteItem , int select)
{
    // Initialize database
    DB dbAdapters = DB.getDBAdapterInstance(TabActivity.this);
    dbAdapters.openDataBase();

    ContentValues cv_InitialValues = new ContentValues();
    cv_InitialValues.put("Selection", select);

    dbAdapters.b_UpdateRecordInDB("Items", cv_InitialValues, "_id=?", new String[] {deleteItem});
    dbAdapters.close();
}

});

//在主要活动中列出视图XML属性

<ListView 
    android:id="@+id/LV_Instore_CartTab"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:textSize="2px"
    android:layout_weight="1"
    android:choiceMode="multipleChoice"/>

2 个答案:

答案 0 :(得分:1)

您需要覆盖适配器中的getView。滚动列表时,视图进入视图时调用此函数。 convertView变量是在滚动并重用时刚刚离开视图的视图。 convertView可能为null,因此您应该检查它是否为null并且如果它为null则膨胀新的行布局,否则您可以像使用它时那样使用convertView。现在发生的事情是视图正在被重用,但是你没有在getView函数中将状态设置回你想要的状态。在此函数中,您应使用传入的位置变量来确定视图所连接的列表中的哪个项目。如果您将检查状态存储在对象列表中,则可以使用该位置从列表中获取正确的项目。使用从列表中检索的对象来选中或取消选中行中的复选框。

答案 1 :(得分:0)

我不是真的知道CompundButton,但您可以尝试下面的代码段,

tmp_Chk.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            if ( !tmp_Chk.isChecked()) {
                tmp_Chk.setChecked(false);  
                Check_Uncheck();
            } else {
                Check_Uncheck();
                tmp_Chk.setChecked(true);

            }
        }
    });

    if (cursor.getInt(11) == 0) {
        tmp_Chk.setChecked(false);
    } else {
        tmp_Chk.setChecked(true);
    }