0

In a table layout, there are two radio buttons in two rows. Is there any way to tie them as a group (as in radio group)? That means, user can check only one radio button at a time.

I tried to handle the logic at the event invocation using listener interfaces.

Any thoughts on a better way around?

Thanks in advance!

Renjith
  • 3,457
  • 5
  • 46
  • 67
  • 1
    I think here is the perfect example for you. >>http://stackoverflow.com/questions/2381560/how-to-group-a-3x3-grid-of-radio-buttons – Hanry Aug 10 '11 at 10:59

1 Answers1

1

Implement setOnCheckedChangeListener(listener) on the radio buttons. When you get call in one radio button then uncheck other radio buttons.....

Vineet Shukla
  • 23,865
  • 10
  • 55
  • 63