RadioGroup+RadioButton单选按钮和CheckBox复选按钮的用法 两个radiobutton单选

布局文件:<RadioGroupandroid:id="@+id/genderGroup"android:layout_width="wrap_content"android:layout_height="wrap_content"android:orientation="vertical"><RadioButton android:id="@+id/femaleButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/female" /><RadioButton android:id="@+id/maleButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/male" /></RadioGroup>
<CheckBoxandroid:id="@+id/swim"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/swim" /><CheckBoxandroid:id="@+id/run"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/run" />

在java文件中给RadioGroup设定监听器://注意给RadioGroup设定监听器用的是RadioGroup的内部接口OnCheckedChangeListenergenderGroup.setOnCheckedChangeListener(newRadioGroup.OnCheckedChangeListener() {@Overridepublic void onCheckedChanged(RadioGroup group, int checkedId){// TODO Auto-generated method stubif(femaleButton.getId() == checkedId){System.out.println("famale");Toast.makeText(RadioTest.this,"famle",Toast.LENGTH_SHORT).show();//Toast的作用是弹出一个消息}else if(maleButton.getId() == checkedId){System.out.println("male");}}});
RadioGroup+RadioButton单选按钮和CheckBox复选按钮的用法 两个radiobutton单选
//为每一个多选按钮添加监听器swimBox.setOnCheckedChangeListener(newCompoundButton.OnCheckedChangeListener() {@Overridepublic void onCheckedChanged(CompoundButton buttonView,boolean isChecked) {// TODO Auto-generated method stubif(isChecked){System.out.println("swim is checked");}else{System.out.println("swim is unchecked");}}});runBox.setOnCheckedChangeListener(newCompoundButton.OnCheckedChangeListener() {@Overridepublic void onCheckedCh anged(CompoundButton buttonView,boolean isChecked) {// TODO Auto-generated method stubif(isChecked){System.out.println("run is checked");}else{System.out.println("run is unchecked");}}});

  

爱华网本文地址 » http://www.413yy.cn/a/25101015/264551.html

更多阅读

李开复博士写给中国大学生的信 李开复给大学生的

李开复博士写给中国大学生的信 [1] 我在中国的这两年来,工作中最大的享受是到国内各高校与学生们进行交流。这些访问和交流使得我有机会与成千上万的青年学生就他们所关心的事业、前途等问题进行面对面的沟通。中国学生的聪明、好学

LM358的基本特性和各种应用 实时系统的基本特性

LM358内部包括有两个独立的、高增益、内部频率补偿的双运算放大器,适合于电源电压范围很宽的单电源使用,也适用于双电源工作模式,在推荐的工作条件下,电源电流与电源电压无关。它的使用范围包括传感放大器、直流增益模组,音频放大器、

Lest和Forfearthat等同义结构的用法 so that的同义词

Lest和For fear that等同义结构的用法一、连词lest引出目的状语从句,谓语中包含should(体现虚拟语气),并且还可省略。1. Please remind me of it again tomorrow lest I (should)forget.明天请再提醒我一下,免得我忘记。2. He runs fa

声明:《RadioGroup+RadioButton单选按钮和CheckBox复选按钮的用法 两个radiobutton单选》为网友把梦护好别碎掉分享!如侵犯到您的合法权益请联系我们删除