Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android技術基礎 >> 第20章、OnCheckedChangeListener事件(從零開始學Android)

第20章、OnCheckedChangeListener事件(從零開始學Android)

編輯:Android技術基礎

單選按鈕RadioGroup、復選框CheckBox都有OnCheckedChangeListener事件,我們一起了解一下。

一、布局

  1、打開“res/layout/activity_main.xml”文件。

[html] view plain copy  
  1. <RelativeLayout   
  2.     xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     xmlns:tools="http://schemas.android.com/tools"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="match_parent"  
  6.     tools:context=".MainActivity" >  
  7.   
  8.     <RadioGroup  
  9.         android:id="@+id/gender"  
  10.         android:layout_width="wrap_content"  
  11.         android:layout_height="wrap_content"  
  12.         android:layout_alignParentLeft="true"  
  13.         android:layout_alignParentTop="true" >  
  14.         <RadioButton  
  15.             android:id="@+id/male"  
  16.             android:layout_width="wrap_content"  
  17.             android:layout_height="wrap_content"  
  18.             android:checked="true"  
  19.             android:text="男" />  
  20.         <RadioButton  
  21.             android:id="@+id/female"  
  22.             android:layout_width="wrap_content"  
  23.             android:layout_height="wrap_content"  
  24.             android:text="女" />  
  25.