Andriod游戲開發系統控件-RadioButton
RadioButton是單選按鈕,和CheckButton一樣都基礎Button。RadioButton一般都存在單選組(RadioGroup)中,當多個RadioButton存放在一個單選組中,只能選一個RadioButton;如果想實現RadioButton的多選,那就需要多個RadioGroup。
創建項目:RadioButtonProject
功能:實現單選按鈕
項目運行效果圖:
修改布局文件:
=>>main.xml
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:Android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- <RadioGroup
- android:id="@+id/radGrp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- >
- <RadioButton
- android:id="@+id/rb1"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/radB1"
- />
- <RadioButton
- android:id="@+id/rb2"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/radB2"
- />
- <RadioButton
- android:id="@+id/rb3"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/radB3"
- />
- </RadioGroup>
- </LinearLayout>