我在
@L_404_0@中有一个单选按钮组,它看起来像:
选择颜色:
>红色
>蓝色
>橙色
>绿色
我需要选择单选按钮及其值.
我在radiogroup rg中以这种方式有4个radiobutton
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 } });
解决方法
你可以使用isChecked()函数测试radion按钮.
对于前:
if(radio1_red.isChecked()) { txtView.setText("Red button is checked"); }
看看这个 Example .
你也可以参考android-sdk页面中给出的这个 Page – Form Stuff .
这样做是为了获取选定的单选按钮及其值:
private OnClickListener radio_listener = new OnClickListener() { public void onClick(View v) { // Perform action on clicks RadioButton rb = (RadioButton) v; Toast.makeText(HelloFormStuff.this,rb.getText(),Toast.LENGTH_SHORT).show(); } };