In my application am displaying 20 multiple choice questions with the help of RecyclerView.
If I change the value of first RadioGroup and s
As i have seen your code...
just add single line
viewHolder.rgAnswers.setOnCheckedChangeListener(null);
in onBindViewHolder() method above of this line
viewHolder.rgAnswers.check(stList.get(position).getSelectedRadioButtonId()); ...
if it solved your problem ..let me know ... i will explain you a scenario why its happening .. Because i faced similer problem and solved using this solution.