android单选按钮

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android单选按钮相关的知识,希望对你有一定的参考价值。

为什么这样不行呢?还是可以同时选中3个按钮,我只想单选....QQ385811416 public class seshi extends Activity TextView x_View; RadioGroup x_Group; RadioButton b1,b2,b3; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) super.onCreate(savedInstanceState); setContentView(R.layout.main); x_View = (TextView)findViewById(R.id.tt1); x_Group = (RadioGroup)findViewById(R.id.gg1); b1 = (RadioButton)findViewById(R.id.bb1); b2 = (RadioButton)findViewById(R.id.bb2); b3 = (RadioButton)findViewById(R.id.bb3);

参考技术A 你要当成单选的一组的radiobutton要放在radioGROUP下,不然这个GROUP就没起作用
只有这样写,才能实现这组radiobutton是单选的效果。

以上是关于android单选按钮的主要内容,如果未能解决你的问题,请参考以下文章

android 编程中怎样从单选按钮获取数据

android单选按钮

Android:保存单选按钮的状态

Adobe Air for Android 上的单选按钮和单选按钮组?

Android - 使用单选组,有七个单选按钮,只需要 0-6 的值

RadioButton(单选按钮)