Demo2 adiocheck_demosrcmain eslayoutactivity_main.xml
1 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 tools:context=".MainActivity" 6 android:orientation="vertical"> 7 8 <TableRow> 9 <TextView 10 android:layout_width="wrap_content" 11 android:layout_height="wrap_content" 12 android:text="性别:" 13 android:textSize="20sp"/> 14 <!--定义一组单选按钮--> 15 <RadioGroup 16 android:orientation="horizontal" 17 android:layout_gravity="center_horizontal"> 18 <!--定义两个单选按钮--> 19 <RadioButton 20 android:layout_width="wrap_content" 21 android:layout_height="wrap_content" 22 android:text="男"/> 23 <RadioButton 24 android:layout_width="wrap_content" 25 android:layout_height="wrap_content" 26 android:text="女" 27 android:checked="true"/> 28 </RadioGroup> 29 </TableRow> 30 31 <TableRow> 32 <TextView 33 android:layout_width="wrap_content" 34 android:layout_height="wrap_content" 35 android:text="喜欢的颜色" 36 android:textSize="20sp"/> 37 <!--定义一个垂直的线性布局--> 38 <LinearLayout 39 android:layout_gravity="center_horizontal" 40 android:orientation="vertical" 41 android:layout_width="wrap_content" 42 android:layout_height="wrap_content"> 43 <!--定义三个复选框--> 44 <CheckBox 45 android:layout_width="wrap_content" 46 android:layout_height="wrap_content" 47 android:text="红色" 48 android:checked="true"/> 49 <CheckBox 50 android:layout_width="wrap_content" 51 android:layout_height="wrap_content" 52 android:text="蓝色" /> 53 <CheckBox 54 android:layout_width="wrap_content" 55 android:layout_height="wrap_content" 56 android:text="绿色" /> 57 </LinearLayout> 58 </TableRow> 59 60 </TableLayout>