在AdapterView中找到位置的问题

时间:2012-03-06 12:47:28

标签: android checkbox android-listview android-adapter

我在ListView中遇到了一些严重的getView问题。问题是,我在每一行都有CheckBoxes。我需要使用它们 - ListView是TabHost的一部分,我需要记住检查了哪个CheckBox并在其他选项卡中使用它。

但是,我还有一个“主复选框”,用于检查列表视图中的所有复选框。没什么大不了的,但事实是,我只是找不到我点击哪里来改变ArrayList中CheckBox的状态,在那里我保留了CheckBoxes的所有状态。每次我将侦听器分配给每个View时,作为参数的“int position”会给出一些奇怪的数字,绝对不是我需要的那个 - 适配器中的位置,我敢打赌它就像“现在屏幕上的位置......”

以下是代码:

public View getView(int position, View convertView, ViewGroup parent) {
        count = position;
        View rowView = convertView;
        SingleCarView sView = null;

        if (rowView == null) {
            LayoutInflater inflater = activity.getLayoutInflater();
            rowView = inflater.inflate(R.layout.activity_overview_listview_row, null);
            sView = new SingleCarView();

            sView.cbx = (CheckBox)rowView.findViewById(R.id.overview_listview_chckbox);
            sView.carName = (TextView)rowView.findViewById(R.id.overview_listview_label);
            sView.state = (ImageView)rowView.findViewById(R.id.overview_listview_icon);
            rowView.setTag(sView);
        } else {
            sView = (SingleCarView) rowView.getTag();
        }
        // THE TROUBLE BEGINS HERE...
        sView.cbx.setChecked(savedState.get(position));
        sView.cbx.setOnCheckedChangeListener(new OnCheckedChangeListener() {
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if(computerActionWithCheckBox) {
                    // nothing
                } else {
                    if(allCars.isChecked()) {
                        savedState.set(count, isChecked);
                        userModifiedCheckBox = true;
                        allCars.setChecked(false);

                        adapter.notifyDataSetChanged();
                    } else {
                        savedState.set(count, isChecked);
                    }
                }
            }
        });
        sView.carName.setText(objects.get(position));
        switch(DataLoaderBeta.par.carState.get(position)){
        case 1:
            sView.state.setImageResource(R.drawable.ic_moving);
            break;
        case 2:
            sView.state.setImageResource(R.drawable.ic_out_of_signal);
            break;
        case 0:
            sView.state.setImageResource(R.drawable.ic_parked);
            break;
        }
        return rowView;
    }

非常感谢您的回答! : - )

1 个答案:

答案 0 :(得分:4)

getView()方法中设置为CheckBox的标记,整数表示从getView()方法获得的位置:

sView.cbx.setTag(new Integer(position));

然后在您的OnCheckedChangeListener中,您会看到已点击的复选框,buttonView参数,然后从此按钮获取标记getTag()并将该数字用于savedState中的位置1}}:

public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
          Integer realPosition = (Integer) buttonView.getTag(); //realPosition will be the real position you get in the getView() method
//other stuff here