radio-group is used to create a multiple-exclusion scope for a set of radio buttons. Checking one radio button that belongs to a radio group unchecks any previously checked radio button within the same group.
Questions tagged [radio-group]
1047 questions
0
votes
0 answers
findViewById returns null for radioGroup but finds the radioButtons?
I have an Activity that does the following
Button distanceSort = (Button) findViewById(R.id.distanceSortButton);
Button waitTimeSort = (Button) findViewById(R.id.waitTimeSortButton);
Button nameSort = (Button)…

QuinnVT
- 191
- 1
- 13
0
votes
1 answer
how to program RadioGroup in the ListView on Android
I have a problem with the handle RadioGrup. The application gets the string from the OCR, which is cut and thrown into the adapter on the list of listview with 4 RadioButtons and it is already…

mst007
- 3
- 2
0
votes
1 answer
update radio buttons after each record iteration through cursor
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
0
votes
1 answer
Add RadioGroup to AlertDialog in Android
I need to add a radiogroup to an AlertDialog, so i write the follow code:
AlertDialog.Builder screenDialog = new AlertDialog.Builder(this);
screenDialog.setTitle("Captured Screen");
RadioGroup azione = (RadioGroup)…

pindol
- 2,110
- 6
- 35
- 52
0
votes
1 answer
Extjs4 radiogroup in tabpanel, loads fine on first tab, but not others
I have a tabpanel with a grid in the first tab - called main-grid. I double-click on a row in main-grid and it loads a new tab, with a form-grid. In the form-grid I have set a column layout. I have a grid in the left column and a form with the…

PaulW
- 39
- 10
0
votes
1 answer
Having trouble testing RadioGroup with RoboGuice + Robolectric
I have looked at this a bunch of different ways and with what little hair I have left, I thought I would put it out there in the hope someone has already tried this.
I am trying to write a Robolectric test of my Roboguice enabled Activity.…

Andrew
- 11
- 2
0
votes
1 answer
Gap on left when button set to null for radio button in Android
I am working on an Android app where I have a radiogroup with 3 radio button.
The following is the code for the same:

Nik
- 2,913
- 7
- 40
- 66
-1
votes
1 answer
How to add check box counter android eclipse
I have 2 radio buttons and 4 check boxes that i want to keep count of. when you select radio button 1, you should be able to select 3 check boxes only.
Following is my code. I tried the logic by Newts but it doesn't count correctly...Help!
…

user1179083
- 79
- 1
- 5
- 17
-1
votes
2 answers
My radio buttons are going out of screen
I am using Radio Buttons inside a relative layout, here is my code

Nik
- 2,913
- 7
- 40
- 66
-1
votes
1 answer
How can I check only one radiobutton in two groups if I have two radiogroups with radiobuttons
I have two horizontal radiogroups with radiobuttons and I want to check only one of the radiobuttons but since they are in different radiogroups it allows the radiobutton from the other group to be checked too!Is there any way that when I check only…

rrezz
- 13
- 1
- 5
-1
votes
1 answer
RadioGroup change value
I have a place holder in this radioGroup where I want the user to be able to edit the value. I am not sure the best way to do this and wanted to see any anyone has some ideas. I have some events but they dont look like anything that will change the…

Jefferson
- 173
- 2
- 12
- 32
-1
votes
1 answer
When I click on AlertDialog item, the radio group not stay ON when close and open alert dialog again
I want to the Radiogroup stay ON when I click on an item from the alertdialog (My AlertDialog)
and when I close and open alertdialog again, it still staying ON (Like This)
I also used [checkeditem: 0] to hold radiogroup always ON just for…

Afearntm
- 15
- 5
-1
votes
1 answer
Set selected Radio Button from group using Typescript
Have this on the html side:

Ash
- 1,269
- 3
- 25
- 49
-1
votes
1 answer
create divider between radio buttons in radio group added programmatically?
i have created radio buttons added to radio group programmatically, the radio group in xml is as…

Malo
- 1,232
- 2
- 17
- 28
-1
votes
1 answer
Group Radio button
I have 3 radio button in group and I want to call intent on click of radio button but when I clicked on radio button I got exception and I'm not able to find out what kind of exception I'm getting.
Here is my code.
public class Contentstory extends…

Mike
- 11
- 1
- 4