欢迎来到皮皮网网站!

【发货单源码】【msdos系统源码编译】【视频源码打鼓代码】android radiogroup源码

时间:2024-11-30 02:40:29 来源:VIP音乐源码下载

1.假设设置了2个RadioButton,在代码中如何去实现选中其一就不能选另一个?

android radiogroup源码

假设设置了2个RadioButton,发货单源码在代码中如何去实现选中其一就不能选另一个?

       两个RadioButton要写在同一个组RadioGroup下面这样就可以了...xml文件如下:

       <RadioGroup android:id="@+id/rg_sex" android:layout_width="fill_parent"

       android:orientation="horizontal" android:layout_height="wrap_content">

       <RadioButton android:layout_width="wrap_content"

       android:text="@string/person_man" android:id="@id/+rb_person_man"

       android:layout_height="wrap_content" android:checked="true" />

       <RadioButton android:layout_width="wrap_content"

       android:text="@string/person_woman" android:id="@id/+rb_person_woman"

       android:layout_height="wrap_content" />

       </RadioGroup>

       java代码如下:

       private RadioGroup rg_sex ;

       ...

       rg_sex = (RadioGroup)findViewById(R.id.rg_sex);

       rg_sex.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {

       @Override

       public void onCheckedChanged(RadioGroup group,msdos系统源码编译 int checkedId) {

       switch (checkedId) {

       case R.id.rb_person_man:

       System.out.println("男");

       break;

       case R.id.rb_person_woman:

       System.out.println("女");

       break ;

       default:

       break;

       }

       }

       });

更多相关资讯请点击【百科】频道>>>