I have a switch group on Android that looks something like this:
Choose a color:
I need to get the selected switch, as well as its value.
I have 4 radio objects in this way in the radio group rg
rb1a=(RadioButton)findViewById(R.id.rb1a); rb1b=(RadioButton)findViewById(R.id.rb1b); rb1c=(RadioButton)findViewById(R.id.rb1c); rb1d=(RadioButton)findViewById(R.id.rb1d); tv1=(TextView)findViewById(R.id.tv1); next1=(Button)findViewById(R.id.next1); rg=(RadioGroup)findViewById(R.id.rg); // I have error after this line.please help rg.setOnCheckedChangeListener(new OnCheckedChangeListener() { public void onCheckedChanged(RadioGroup group, int checkedId) { } @Override public void onCheckedChanged(CompoundButton arg0, boolean arg1) { // TODO Auto-generated method stub } });
android radio-button
Sanjeev
source share