我正在使用recyclerView构建一个切换按钮列表(如小工具),我想实现:
我尝试在视图持有者类中添加ParameterizedTypeReference
,并调用onClickListener
以调用notifyDataSetChanged()
,然后更改按钮的状态。
但它不起作用,点击的按钮不会改变其状态。
ViewHolder
onBindViewHolder(final ViewHolder holder, int position)
我的adpater类中的onBindViewHolder()
class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener{
ToggleButton button;
String id;
public ViewHolder(View itemView) {
super(itemView);
button = (ToggleButton) itemView.findViewById(R.id.toggle);
button.setOnclickListener(this);
}
@Override
public void onClick(View view) {
((ToggleButton) view).setChecked(true);
int pos = getAdapterPosition();
if (pos != RecyclerView.NO_POSITION) {
selected = pos; //store the position of the user clicked button
notifyDataSetChanged();
}
}
答案 0 :(得分:1)
有些事情你做错了。 ViewHolder
应该只包含视图,而不是单击处理程序或字符串等。(线索在名称中)。将ViewHolder绑定到数据类时,可以添加处理程序并操作视图。
根据我的判断,您需要一个简单的切换按钮列表。当一个按钮打开时,其他按钮应该关闭。我在下面为您创建的测试适配器演示了这一点。
理想情况下,您可以避免notifyDataSetChanged
并使用基于行的版本,但每次按下切换时,它会影响其他所有行,除非您跟踪,否则您在此用例中实际上没有选择选定的行。
public class TestAdapter extends RecyclerView.Adapter<TestAdapter.VH> {
public static class MyData {
public boolean Selected = false;
public String Text;
public MyData(String text) {
Text = text;
}
}
public List<MyData> items = new ArrayList<>();
public TestAdapter() {
this.items.add(new MyData("Item 1"));
this.items.add(new MyData("Item 2"));
this.items.add(new MyData("Item 3"));
}
@Override
public TestAdapter.VH onCreateViewHolder(ViewGroup parent, int viewType) {
return new VH((
LayoutInflater.from(parent.getContext())
.inflate(R.layout.test_layout, parent, false))
);
}
@Override
public void onBindViewHolder(TestAdapter.VH holder, int position) {
final MyData itm = items.get(position);
holder.button.setChecked(itm.Selected);
holder.text.setText(itm.Text);
holder.button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
for (MyData x: items){
x.Selected=false;
}
itm.Selected = true;
notifyDataSetChanged();
}
});
}
@Override
public int getItemCount() {
return items.size();
}
public class VH extends RecyclerView.ViewHolder {
ToggleButton button;
TextView text;
public VH(View itemView) {
super(itemView);
button = itemView.findViewById(R.id.toggle);
text = itemView.findViewById(R.id.text1);
}
}
}
test_layout.xml
<?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="wrap_content"
android:orientation="horizontal">
<ToggleButton
android:id="@+id/toggle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
答案 1 :(得分:0)
尝试设置OnCheckedChangeListener
而不是&#39; OnclickListener`
`button.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
// The toggle is enabled
} else {
// The toggle is disabled
}
}
});`
Android Doc:https://developer.android.com/guide/topics/ui/controls/togglebutton.html
答案 2 :(得分:0)
在onBindView和onClick方法中设置单击侦听器, 首先&#34;关闭&#34;通过在列表模型中设置参数来设置所有切换按钮 然后&#34;打开&#34;如果未选中,则选择一个。
@Override
public void onClick(View view) {
// clear all model values to isSelected false in the list
}