0

I have three radio buttons and a method that each time i click on a Button Next. The next record will be displayed using a setonclickListener. The goal is clear all the radio buttons after each record.

al23dev
  • 845
  • 2
  • 8
  • 17

1 Answers1

1

the answer is very simple I was trying to change the value using setChecked(false); for each radio button but what this did was every time I clicked on the button it was cleared. The answer that I was looking for was clearCheck() of RadioGroup class, this acts as a reset.

Chaitanya K
  • 1,827
  • 4
  • 32
  • 67
al23dev
  • 845
  • 2
  • 8
  • 17