怎么获取listview 中checkbox的选中状态

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么获取listview 中checkbox的选中状态相关的知识,希望对你有一定的参考价值。

参考技术A 这是我之前解决这个问题写的东西,直接贴上来,你看下吧。
private
List<Boolean>
originalFoundedDevicesState;
//有一个保存状态的list
给listview绑定adapter:
private
CheckAdapter
foundedDevices;
private
ListView
foundedList;
foundedDevices=new
CheckAdapter(AddingDevicesAct.this,originalFoundedDevices,originalFoundedDevicesState);
foundedList.setAdapter(foundedDevices);
foundedList.setItemsCanFocus(false);foundedList.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
foundedList.setOnItemClickListener(new
OnItemClickListener()
public
void
onItemClick(AdapterView<?>
parent,
View
view,
int
position,
long
id)

//
TODO
Auto-generated
method
stub

);
2.自己为checkbox复写个adapter:
class
CheckAdapter
extends
BaseAdapter
Context
mContext;
List<Device>
mData;
List<Boolean>status;
LayoutInflater
mInflater;
CheckBox
checkBox;
HashMap<Integer,View>
lmap=new
HashMap<Integer,View>();
public
CheckAdapter(Context
context,List<Device>
data,List<Boolean>
DeviceStatus)

mInflater=LayoutInflater.from(context);
mData=data;
status=DeviceStatus;

public
int
getCount()

//
TODO
Auto-generated
method
stub
return
mData.size();

public
Object
getItem(int
position)

//
TODO
Auto-generated
method
stub
return
mData.get(position);

public
long
getItemId(int
position)

//
TODO
Auto-generated
method
stub
return
position;

public
View
getView(final
int
position,
View
convertView,
ViewGroup
parent)

//
TODO
Auto-generated
method
stub
if(lmap.get(position)==null)

convertView=mInflater.inflate(R.layout.child,parent,
false);
checkBox=(CheckBox)convertView.findViewById(R.id.devices);
convertView.setTag(checkBox);

else

checkBox=(CheckBox)convertView.getTag();

checkBox.setId(position);
checkBox.setChecked(status.get(position));
checkBox.setText(mData.get(position).toString());
checkBox.setOnCheckedChangeListener(new
OnCheckedChangeListener()
public
void
onCheckedChanged(CompoundButton
buttonView,
boolean
isChecked)

//
TODO
Auto-generated
method
stub
status.set(buttonView.getId(),
isChecked);
notifyDataSetChanged();

);
return
convertView;

3.最后可以根据其是否被选中状态判断某项是否被选中,并提取id:
for(num1=0;num1<originalFoundedDevicesState.size();num1++)

if(originalFoundedDevicesState.get(num1))
finalPairedDevices.add(new
Device(originalFoundedDevices.get(num1).getName(),
originalFoundedDevices.get(num1).getAddress()));

带有 CheckBox 的 ListView 的奇怪行为

【中文标题】带有 CheckBox 的 ListView 的奇怪行为【英文标题】:Weird Behaviour of ListView with CheckBox 【发布时间】:2012-01-10 13:00:53 【问题描述】:

我在 ListView 上方有一个 CheckBox,其中包含 Checkbox 项。因此,当我选中复选框时,我会应用 notifyDataSetChanged() 来检查列表中的所有项目。所以当时我两次获取 getView 方法的日志,这意味着当我只调用一次 notifyDataSetChanged() 时,getView 被调用了两次。那么,谁能告诉我为什么我会两次获取日志?还有为什么 getView() 会被调用两次?

主类 -

checkAll = (CheckBox) findViewById(R.id.my_check_box);
        checkAll.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() 

            @Override
            public void onCheckedChanged(CompoundButton checkbox, boolean arg1) 
                adapter.notifyDataSetChanged();
            
        );

适配器类的代码 -

    public class myAdapter extends ArrayAdapter<Model> 

    private final List<Model> list;
    private final Activity context;
    private CheckBox checkAll;

    public myAdapter(Activity context, List<Model> list, CheckBox checkAll) 
        super(context, R.layout.row, list);
        this.context = context;
        this.list = list;
        this.checkAll = checkAll;

    

    static class ViewHolder 
        protected TextView text;
        protected CheckBox checkbox;
    

    @Override
    public View getView(final int position, View convertView, ViewGroup parent) 
        View view = null;
        if (convertView == null) 
            LayoutInflater inflator = context.getLayoutInflater();
            view = inflator.inflate(R.layout.row, null);
            final ViewHolder viewHolder = new ViewHolder();
            viewHolder.text = (TextView) view.findViewById(R.id.label);
            viewHolder.checkbox = (CheckBox) view.findViewById(R.id.check);
            viewHolder.checkbox
                    .setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() 

                        @Override
                        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) 
                            Model element = (Model) viewHolder.checkbox.getTag();
                            element.setSelected(buttonView.isChecked());
                        
                    );
            view.setTag(viewHolder);
            viewHolder.checkbox.setTag(list.get(position));
         else 
            view = convertView;
            ((ViewHolder) view.getTag()).checkbox.setTag(list.get(position));
        
        ViewHolder holder = (ViewHolder) view.getTag();
        holder.text.setText(list.get(position).getName());


        if(checkAll.isChecked() == true)
            System.out.println(position+" checked th position");
        
        else if(checkAll.isChecked() == false)
            System.out.println(position+" not checked th position");
        

        holder.checkbox.setChecked(list.get(position).isSelected());    
        return view;
    

LogCat 输出当我可以 adapter.notifyDataSetChanged(); 在 CheckAll 复选框上检查更改侦听器时。

11-30 20:31:33.751: INFO/System.out(1300): 0 checked th position
11-30 20:31:33.761: INFO/System.out(1300): 1 checked th position
11-30 20:31:33.770: INFO/System.out(1300): 2 checked th position
11-30 20:31:33.780: INFO/System.out(1300): 3 checked th position
11-30 20:31:33.810: INFO/System.out(1300): 4 checked th position
11-30 20:31:33.810: INFO/System.out(1300): 0 checked th position
11-30 20:31:33.831: INFO/System.out(1300): 1 checked th position
11-30 20:31:33.831: INFO/System.out(1300): 2 checked th position
11-30 20:31:33.851: INFO/System.out(1300): 3 checked th position
11-30 20:31:33.860: INFO/System.out(1300): 4 checked th position

您可以看到我的 Logcat 输出两次得到相同的输出。那么有人能说出为什么会这样吗?

【问题讨论】:

这个问题也和我一起提出... +1 ***.com/questions/2618272/… 看看这个 @Lalit Poptani 你滚动吗? @Venky 不,我没有滚动,我只有 4 个项目。 @LalitPoptani 你好,我正在滚动和多选,然后全选,单选。 Single , multiple ,选择所有工作正常但滚动时位置发生变化,并且全部取消选择。那么我该如何解决这个问题。 【参考方案1】:

尝试让您的ListView 高度为fill_parent。 Lisiview 尝试自己根据提供的空间进行一些调整,这是我学到的,看起来这就是背后的原因。

看看有没有帮助。

【讨论】:

这意味着当你想将你的列表视图设置在屏幕的一半时..你无法解决上述问题? 如果你想将你的列表视图设置在屏幕的一半,你可以使用 android:layout_weight 【参考方案2】:

这并不是你问题的真正答案——只是当我看到这个时,我的眼睛有点疼:

if(checkAll.isChecked() == true)
    System.out.println(position+" checked th position");

else if(checkAll.isChecked() == false)
    System.out.println(position+" not checked th position");

if-statement 需要 boolean 表达式,并且由于方法 isChecked() 返回 boolean,因此无需将其与 true/false 匹配。此外,由于 boolean 只能是 truefalse,因此无需同时检查两者。简而言之,您可以将上述内容归结为:

if( checkAll.isChecked() )
  System.out.println(position+" checked th position");
else
  System.out.println(position+" not checked th position");

哪个更漂亮:-)

不要将此视为对您的编程技能的批评 - 只需将其视为学习机会。

【讨论】:

嗯,它只是一个演示应用程序,用于准确了解我的问题。也谢谢。 太搞笑了,kaspermoerch!试试这个:System.out.println(position + (checkAll.isChecked() ? " checked th position" : " not checked th position")); 这也行得通,杰夫。我确实发现,应该谨慎使用三元运算符。它并不总能提高可读性。【参考方案3】:

这是因为 checkchangelistener 中的 viewHolder 会随着列表滚动而改变。因此使用这种方式无法实现第 i 个复选框和 viewHolder 之间的映射。

创建单独的类 checkchangelistener 实现 checnChecnglistener 。通过构造函数传递 checkchangelistener。

EG。在 getView 之外

class MyCheckChangeLsitenet implements CompoundButton.OnCheckedChangeListener

ViewHolder viewHolder
 MyCheckChangeLsitenet(ViewHolder viewHolder)
 
this.viewHolder =  viewHolder ;

                        @Override
                        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) 
                            Model element = (Model) viewHolder.checkbox.getTag();
                            element.setSelected(buttonView.isChecked());
                        
                    );

在 GetView 中

viewHolder.checkbox .setOnCheckedChangeListener(new MycheckChangeListenet(viewHolder))

【讨论】:

我目前没有滚动列表,虽然它给出了同样的问题。 忘记滚动这个词。试图让您熟悉内部 listView 处理。通过描述的方式。它会解决你的问题 你是对的@ShailendraSinghRajawat...但是通用模型不是这样的,还有其他简单的方法吗?

以上是关于怎么获取listview 中checkbox的选中状态的主要内容,如果未能解决你的问题,请参考以下文章

如何获取listview里选中的checkbox

C# listview如何复制选中的多行内容

如何遍历并获取listview中checkbox是不是选中以及该项的id?

使用复选框从 ListView 中获取选中的项目

Android中ListView结合CheckBox判断选中项

js中怎么获取checkbox选中的值