Android游戲開發系統控件-CheckBox
CheckBox是Android系統最普通的UI控件,繼承了Button按鈕
下面通過一個實例來學習
功能:實現復選框的功能
創建項目“CheckBoxProject”
運行項目效果截圖:
代碼實現:
=>>main.xml
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
-
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/hello" />
- <CheckBox
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/cb1"
- android:id="@+id/cb1"
- />
- <CheckBox
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/cb2"
- android:id="@+id/cb2"
- />
- <CheckBox
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/cb3"
- android:id="@+id/cb3"
- />
- </LinearLayout>