歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android游戲開發系統控件-CheckBox

Android游戲開發系統控件-CheckBox

CheckBox是Android系統最普通的UI控件,繼承了Button按鈕

下面通過一個實例來學習

功能:實現復選框的功能

創建項目“CheckBoxProject”

運行項目效果截圖:

代碼實現:

=>>main.xml

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <TextView  
  8.         android:layout_width="fill_parent"  
  9.         android:layout_height="wrap_content"  
  10.         android:text="@string/hello" />  
  11.     <CheckBox  
  12.         android:layout_width="fill_parent"  
  13.         android:layout_height="wrap_content"  
  14.         android:text="@string/cb1"  
  15.         android:id="@+id/cb1"  
  16.         />  
  17.     <CheckBox   
  18.         android:layout_width="fill_parent"  
  19.         android:layout_height="wrap_content"  
  20.         android:text="@string/cb2"  
  21.         android:id="@+id/cb2"  
  22.         />  
  23.     <CheckBox  
  24.         android:layout_width="fill_parent"  
  25.         android:layout_height="wrap_content"  
  26.         android:text="@string/cb3"  
  27.         android:id="@+id/cb3"  
  28.         />  
  29. </LinearLayout>  
Copyright © Linux教程網 All Rights Reserved