在android中选择listview的所有复选框 [英] Selecting all checkboxes of listview in android

查看:22
本文介绍了在android中选择listview的所有复选框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有用于列表视图的自定义数组适配器,其中有 5 个视图,包括复选框,在这里我想实现选择列表视图的所有复选框并取消选择所有复选框,我尝试使用 getchildat() 方法oncreate()onresume()onpostcreate 也有,但没有给我带来好运.如果您能告诉我解决方案,我将不胜感激.

i am having custom arrayadapter for listview, which has 5 views inside including checkbox, here i want to implement the select all checkboxes of listview and deselect all checkboxes, i tried with getchildat() method in the oncreate(), onresume(), and onpostcreate also but does not made luck to me. i appreciate if you can tell me the solution.

@Override
      public void onPostCreate(Bundle savedInstanceState){
          super.onPostCreate(savedInstanceState);

      Button selectall=(Button) findViewById(R.id.allselect);

      selectall.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            int count = listview.getCount();

            System.out.println("the count is "+count);
            for (int i = 0; i < listview.getLastVisiblePosition() - listview.getFirstVisiblePosition(); i++)  {

                RelativeLayout itemLayout = (RelativeLayout)listview.getChildAt(i);
                CheckBox cb = (CheckBox)itemLayout.findViewById(R.id.chkbx);
                cb.setChecked(true);

            }

        }
    });
  }

阵列适配器类

@SuppressWarnings("unchecked")
    public MultipleLeadSyncAdapter(Context context, String[] values,String[] values1,List<Model> qrcode ,String[] values3,String[] values4,String[] values5) {
        super(context, R.layout.multipleselectlist, values1);
        this.context = context;
        this.values = values;
        this.values1 = values1;
        this.list=qrcode;
        this.values3=values3;
        this.values4=values4;
        this.eventid=values5;
    }

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    LayoutInflater inflater = (LayoutInflater) context
            .getSystemService(Context.LAYOUT_INFLATER_SERVICE); 


    ViewHolder holder =null;
    if (convertView == null) {


            convertView = inflater.inflate(R.layout.multipleselectlist, parent, false);

            holder = new ViewHolder();
            holder.textView1 = (TextView) convertView.findViewById(R.id.multileadfirst_name);

            holder.textView3 = (TextView) convertView
                    .findViewById(R.id.multileadcompany_name);

            holder.rate=(RatingBar) convertView.findViewById(R.id.multileadlistrating);

            holder.chkbox = (CheckBox) convertView.findViewById(R.id.chkbx);

            holder.chkbox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

                @Override
                public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                    int getPosition = (Integer) buttonView.getTag();  
                    list.get(getPosition).setSelected(buttonView.isChecked()); 
                }
            });

            convertView.setTag(holder);
            convertView.setTag(R.id.chkbx,holder.chkbox);
            convertView.setTag(R.id.multileadfirst_name,holder.textView1);
            convertView.setTag(R.id.multileadcompany_name,holder.textView3);
            convertView.setTag(R.id.multileadlistrating,holder.rate);

    }else {
        holder = (ViewHolder) convertView.getTag();
    }


     holder = (ViewHolder) convertView.getTag();


    holder.textView1.setText(values[position]);

    if(values3[position].equals(" ")||values3[position].equals("null")||values3[position].equals("")){

    }else{

        String[] temp=values3[position].split(" ");

    }

    holder.textView3.setText(values1[position]);

    holder.rate.setRating(Float.valueOf(values4[position]).floatValue());

    String s = values[position];
    String ss = values1[position];

    System.out.println(s + ss );


    holder.chkbox.setTag(position);

    //holder.textView3.setText(list.get(position).getName());
    holder.chkbox.setChecked(list.get(position).isSelected());
    String igurl=values[position];
    System.out.println("the imagurl is "+igurl);

    return convertView;



}

class ViewHolder {

    String qrcode,Boothid;
    TextView textView1, textView2, textView3,textView4,textView5;
    RatingBar rate;
    ImageView imageView;
    CheckBox chkbox;

    public String getQrcode() {
        return qrcode;
    }

    public void setQrcode(String qrcode) {
        this.qrcode = qrcode;
    }

    public String getBoothID() {
        return Boothid;
    }

    public void setBoothID(String Boothid) {
        this.Boothid = Boothid;
    }

}

}

推荐答案

ListView 只是数据的表示.数据由 Adapter 提供给 ListView.话虽如此,我可以解释你做错了什么:

A ListView is just a presentation of data. The data is given to the ListView by an Adapter. This being said, I can explain what you did wrong:

在您的 OnClickListener 中,您正在(取消)检查 ListView 本身的 View.这意味着数据没有被改变,代表这个数据的 ListView 没有显示想要的行为.

Inside your OnClickListener, you are (un)checking a View of the ListView itself. This means the data is not being changed and the ListView which represents this data, does not display the wanted behavior.

一个简单的解决方案是向您的 Model 对象添加一个布尔值,指示选中状态:

A simple solution would be adding a boolean to your Model-object which indicates the checked-state:

Model {
   boolean isChecked = false;

   public void setChecked(boolean checked){
        isChecked = checked;
   }

   public boolean isChecked(){
        return isChecked;
   }
}

每当您单击全选"按钮时,您将简单地切换此布尔值并通过方法 notifyDataSetChanged 通知 Adapter 他的数据已更改.这将轮到他更新 ListView 本身.在伪代码中:

Whenever you click the 'selectall'-button, you will simple toggle this boolean and notify the Adapter that his data has changed with the method notifyDataSetChanged. This will on his turn update the ListView itself. In pseudocode:

 onClick(..) {
     foreach (model inside my adapter){
         model.setChecked(true);
     }
     listview.getAdapter().notifyDataSetChanged()
 }

最后但并非最不重要的一点是,在 Adapter 内的 getView() 方法中,您可以查看是否检查了 Model 以及按指示行动.

Last but not least, in the getView()-method inside your Adapter you can see if a Model is checked or not and act accordingly.

getView(...){

   if (listOfModel.get(position).isChecked){
       // do stuff, probably check a CheckBox
   } else {
       // uncheck...
   }

祝你好运!

这篇关于在android中选择listview的所有复选框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆