在ListView中更改数据时保持所选元素的状态

时间:2013-03-06 15:19:36

标签: java android android-listview state

我有一个包含产品列表的活动(如购物清单),我们可以在其中选择产品单元的数量。

该活动包含带有TextWatcher的EditText和带有个人适配器的ListView(扩展BaseAdapter)。

当我在EditText中键入一个键时,产品的listView将使用新数据刷新。

但我想保留所选数据的状态。

例如,我在EditText中键入一个引用,然后listView包含3个数据(A,B,C),我选择A,然后键入5个单位,然后我在EditText中键入一个新引用(A和B消失了。)

listView仅包含C,但我删除了我的搜索并返回到A,B,C。

问题是,产品A未被选中且有0个单位(5个单位已经消失)。

即使我在EditText中更改搜索,我也会保留所选产品和单位。

请问怎么做?

以下是代码段:

活动的布局:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <EditText  
        android:id="@+building_list/search_box" 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="Filter by reference"
        android:inputType="textAutoCorrect|none|textAutoComplete|none|textNoSuggestions"
        android:maxLines="1"
        android:textSize="20dp" />

    <ListView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_marginLeft="10dp"
        android:id="@+id/productListView">
    </ListView>
</LinearLayout>

适配器:

public class AdapterProduct extends BaseAdapter {   
    private List<Product> lstProduct;
    private LayoutInflater mInflater;

    public AdapterProduct(Context context, List<Product> listP) {
        lstProduct = listP;
        mInflater = LayoutInflater.from(context);
        }

public View getView(int position, View convertView, ViewGroup parent) {
        CheckedLinearLayout layoutItem;

        if (convertView == null) {      
            layoutItem = (CheckedLinearLayout) mInflater.inflate(R.layout.row_product, parent, false);
            final ViewHolderProduct viewHolder;
            viewHolder = new ViewHolderProduct();

            viewHolder.btPlusAmount = (Button)layoutItem.findViewById(R.id.btPlusAmount);
            viewHolder.btPlusAmount.setOnClickListener(new OnClickListener() {
                @Override
                public void onClick(View v) {
                    Product p = (Product) viewHolder.product.getTag();
                    p.setAmount(p.getAmount()+1);
                    notifyDataSetChanged();
                }
            });
        }
        else {
            layoutItem = (CheckedLinearLayout) convertView;
            ((ViewHolderProduct) layoutItem.getTag()).btPlusAmount.setTag(lstProduct.get(position));
        }

        ViewHolderProduct viewHolder = (ViewHolderProduct) layoutItem.getTag();
        viewHolder.amount.setText(String.valueOf(lstProduct.get(position).getAmount()));
}

static class ViewHolderProduct {
    protected TextView amount;
    protected Button btPlusAmount;
}
}

使用TextWatcher的AsyncTask:

AsyncTask
doInBackground =>
    modelProduct = new AdapterProduct(leContext, 
                        ProductJSON.getService().searchProducts(leContext, url, params[0])); //params[0] = the text of EditText


private TextWatcher filterTextWatcher = new TextWatcher() {

    public void afterTextChanged(Editable s) {

    }

    public void beforeTextChanged(CharSequence s, int start, int count,
            int after) {
    }

    public void onTextChanged(CharSequence s, int start, int before,
            int count) {

        //AsyncTask task
        task.execute(s.toString());
    }
};

1 个答案:

答案 0 :(得分:0)

我让你检查我的answer here

1)基本上,为适配器添加一个新属性。一个简单的int []就足够了。存储内部选择的产品数量。

2)每次构建ListView行的视图时,请检查所选产品的数量。

3)确保在单击按钮时更新所选产品的数量。此外,确保在列表更改时调整此阵列的大小/更新。每次单击产品时调用notifyDataSetChanged()。