回收者视图广播组onCheckedChangeListener荒谬地运作

时间:2018-08-22 23:05:23

标签: android android-recyclerview radio-group

我已经在回收站视图中创建了一个无线电组,并实现了onCheckedChangeListener,它应该可以正常工作。

但是由于某些原因,在第一次选择后,每当我滚动回收器视图时,即使我没有选择任何广播组选项,此onCheckedChangeListener都会被触发。

这是已检查更改的代码

public void onBindViewHolder(@NonNull RecyclerView.ViewHolder viewHolder, int position) {
    final MyViewHolder holder = (MyViewHolder) viewHolder;

        final String id = studentNames.get(position).getStudent_id();
        final String name = studentNames.get(position).getStudent_name();
        holder.id.setText(id);
        holder.name.setText(name);

        holder.radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(RadioGroup radioGroup, int checkedId) {
                if (radioGroup.isPressed()){ // from one of the links on stackoverflow
                    switch (checkedId) {
                        case R.id.present:
                            calculatedAttendance.add(new Attendance(holder.id.getText().toString(), holder.name.getText().toString(), context.getString(R.string.present)));
                            break;
                        case R.id.absent:
                            calculatedAttendance.add(new Attendance(holder.id.getText().toString(), holder.name.getText().toString(), context.getString(R.string.absent)));
                            break;
                        case R.id.leave:
                            calculatedAttendance.add(new Attendance(holder.id.getText().toString(), holder.name.getText().toString(), context.getString(R.string.leave)));
                            break;
                    }
                }
            }
        });

    }
}

我在android studio中添加了断点,发现即使没有选择该广播组的选项,此onCheckedChange也会被触发。

以前可能会问过一个相关的问题,但它们都解决了复合按钮或复选框,我在问单选按钮。

PS:我确实尝试过此链接onCheckedChanged called automatically

的答案

这就是为什么在开始时看到taht radioGroup.isPressed检查的原因

我什至这样使用它:

@Override
    public void onCheckedChanged(RadioGroup radioGroup, int checkedId) {
        RadioButton button= (RadioButton) radioGroup.findViewById(checkedId);
//both getLayoutPosition and getAdapterPosition
        final String id = studentNames.get(getLayoutPosition()).getStudent_id();
        final String name = studentNames.get(getLayoutPosition()).getStudent_name();
        switch (checkedId) {
            case R.id.present:
                if(button.isPressed()){
                    calculatedAttendance.add(new Attendance(id, name, context.getString(R.string.present)));
                }
                break;
            case R.id.absent:
                if(button.isPressed()) {
                    calculatedAttendance.add(new Attendance(id , name, context.getString(R.string.absent)));
                }
                break;
            case R.id.leave:
                if(button.isPressed()){
                    calculatedAttendance.add(new Attendance(id, name, context.getString(R.string.leave)));
                }
                break;
        }

    }

似乎没有任何作用

1 个答案:

答案 0 :(得分:0)

这确实是一个非常奇怪的问题。

您总是可以做一件事。在回收器视图中创建一个整数个数组,每当选中该按钮时,就在该数组中设置一些值,例如1或2或3。然后在onBindViewHolder中检查该位置的数组值是否不为0。如果为0然后清除无线电组选择,否则选择该特定组。

根据您的情况,您可以使用此代码。

创建一个全局整数数组。

 private int[] checkedList;

内部构造函数将此数组初始化为适配器的getItemCount返回的值,即您的数据模型大小。

checkedList = new int[studentNames.size()];

现在在onBindViewHolder内部执行以下操作:

public void onBindViewHolder(@NonNull RecyclerView.ViewHolder viewHolder, int position) {
final MyViewHolder holder = (MyViewHolder) viewHolder;
        if(checkedList[position] == 1){
            holder.radioGroup.check(R.id.present);
        }else if(checkedList[position] == 2){
            holder.radioGroup.check(R.id.absent);
        }else if(checkedList[position] == 3){
            holder.radioGroup.check(R.id.leave);
        }else{
            holder.radioGroup.clearCheck();
        }
    final String id = studentNames.get(position).getStudent_id();
    final String name = studentNames.get(position).getStudent_name();
    holder.id.setText(id);
    holder.name.setText(name);

    holder.radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
        @Override
        public void onCheckedChanged(RadioGroup radioGroup, int checkedId) {
            if (radioGroup.isPressed()){ // from one of the links on stackoverflow
                switch (checkedId) {
                    case R.id.present:
                        checkedList[position] = 1;
                        calculatedAttendance.add(new Attendance(holder.id.getText().toString(), holder.name.getText().toString(), context.getString(R.string.present)));
                        break;
                    case R.id.absent:
                        checkedList[position] = 2;
                        calculatedAttendance.add(new Attendance(holder.id.getText().toString(), holder.name.getText().toString(), context.getString(R.string.absent)));
                        break;
                    case R.id.leave:
                        checkedList[position] = 3;
                        calculatedAttendance.add(new Attendance(holder.id.getText().toString(), holder.name.getText().toString(), context.getString(R.string.leave)));
                        break;
                }
            }
        }
    });

}
}