国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android程序開發中單選按鈕(RadioGroup)的使用詳解

2020-01-02 07:02:15
字體:
來源:轉載
供稿:網友

在還沒給大家介紹單選按鈕(RadioGroup)的使用,先給大家展示下效果圖吧:


xml文件

<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:orientation="vertical"> <TextView android:id="@+id/txt" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="您的性別為"/> <RadioGroup android:id="@+id/sex" android:layout_width="fill_parent" android:layout_height="wrap_content"> <RadioButton android:id="@+id/male" android:text="男"/> <RadioButton android:id="@+id/female" android:text="女"/> </RadioGroup> </LinearLayout> 

java文件

public classMainActivity extends Activity { private TextView txt=null; private RadioGroup sex=null; private RadioButton male=null; private RadioButton female=null; @Override protected voidonCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); this.txt=(TextView)super.findViewById(R.id.txt); this.sex=(RadioGroup)super.findViewById(R.id.sex); this.male=(RadioButton)super.findViewById(R.id.male); this.female=(RadioButton)super.findViewById(R.id.female); this.sex.setOnCheckedChangeListener(newOnCheckedChangeListenerImp()); } private classOnCheckedChangeListenerImp implementsOnCheckedChangeListener{ public voidonCheckedChanged(RadioGroup group, int checkedId){ String temp=null; if(MainActivity.this.male.getId()==checkedId){ temp="男"; } else if(MainActivity.this.female.getId()==checkedId){ temp="女"; } MainActivity.this.txt.setText("您的性別是"+temp); } }

以上所述是小編給大家介紹的Android程序開發中單選按鈕(RadioGroup)的使用詳解,希望對大家有所幫助!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 巫溪县| 威信县| 云安县| 广灵县| 青冈县| 年辖:市辖区| 卢湾区| 平果县| 长寿区| 喀什市| 扬中市| 葫芦岛市| 新晃| 大邑县| 祁连县| 德州市| 西贡区| 宜都市| 宁夏| 阿勒泰市| 郸城县| 宾川县| 竹北市| 荃湾区| 天等县| 阳谷县| 浑源县| 息烽县| 潍坊市| 报价| 阿克| 汉川市| 岗巴县| 淄博市| 南投县| 霸州市| 新乐市| 托克托县| 桃源县| 江达县| 白玉县|