gpt4 book ai didi

Android RecyclerView 复选框检查自身

转载 作者:行者123 更新时间:2023-11-29 18:48:59 24 4
gpt4 key购买 nike

我有一个 RecyclerView,它有一个复选框和 TextView 。数字 10、20、30、40... 到 500 应该显示在 TextView 中。选中的复选框应该在 TextView 中添加与复选框对应的数字。例如.如果用户仅检查值 10,则 textView 将显示 10。如果用户也检查 20,则TextView 将显示 30 ( 20 +10)。如果用户再次取消选中 10,TextView 将显示 20,依此类推。当我单击复选框时,也会选中一些随机复选框。我在 stackoverflow 中尝试了一种解决方案。它没有用。我坚持这个。请帮助我..这是我的代码:

回收适配器.java:

public class RecyclerAdapter extends RecyclerView.Adapter<RecyclerAdapter.RecyclerHolder>
{

@NonNull
@Override
public RecyclerHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
return new RecyclerHolder(LayoutInflater.from(parent.getContext()).inflate(R.layout.recycler_lyt,parent,false));
}

@Override
public void onBindViewHolder(@NonNull RecyclerHolder holder, final int position) {
holder.number.setText(Integer.toString((Integer) alldata.get(position)));
final String text=holder.number.getText().toString();


holder.checkBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
Log.e("Checked","Checked");
if(checkeddata!=null)
{
if (checkeddata.size()==0)
{
checkeddata.add(text);

}
else {
if(checkeddata.contains(text))
{
checkeddata.remove(text);


}
else {
checkeddata.add(text);

}
}
Iterator iterator=checkeddata.iterator();
int sumnumber=0;
while (iterator.hasNext())
{
sumnumber= sumnumber+Integer.parseInt((String) iterator.next());
}
sum.setText(Integer.toString(sumnumber));
}


}
});


}

@Override
public int getItemCount() {
return alldata.size();
}

public class RecyclerHolder extends RecyclerView.ViewHolder
{
TextView number;
CheckBox checkBox;
public RecyclerHolder(View itemView) {
super(itemView);
number=itemView.findViewById(R.id.number);
checkBox=itemView.findViewById(R.id.check);


}
}
}
public void data()
{
int g=1;
for(int i=10;i<=500;i++)
{
if((i/10)==g)
{
g=g+1;
alldata.add(i);
}

}
}

recycler_lyt.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto">
<TextView
android:layout_width="150dp"
android:layout_height="wrap_content"
android:id="@+id/number"
android:textSize="20sp"/>
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/check"
android:checked="false"
app:layout_constraintRight_toRightOf="parent"/>
</android.support.constraint.ConstraintLayout>

最佳答案

这很正常。您没有将复选框设置为选中或未选中。您正在选择一个并且 View holder 保持选中状态

你可以看看我的例子。你可以这样做:

@Override
public void onBindViewHolder(ViewHolder holder, final int position) {
final Data data = myItems.get(position);

//in some cases, it will prevent unwanted situations
holder.checkBox.setOnCheckedChangeListener(null);

//if true, your checkbox will be selected, else unselected
holder.checkBox.setChecked(data.isSelected());

holder.checkBox.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
//set your object's last status
data.setSelected(isChecked);
}
});

}

在您的 onBindViewHolder 中,您必须将复选框设置为选中或未选中。如果为真,您的复选框将被选中,否则取消选中

holder.checkBox.setChecked(boolean);

关于Android RecyclerView 复选框检查自身,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51260343/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com