zoukankan      html  css  js  c++  java
  • 单选按钮和复选框

    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>
  • 相关阅读:
    概率论
    Python3爬虫爬取淘宝商品数据
    利用Python数据分析基础
    Linux安装MATLAB2016a
    python3爬取高清壁纸(2)
    python3爬取高清壁纸(1)
    Git使用基础
    Python3基础
    正则表达式的使用基础
    Nginx配置多域名代理
  • 原文地址:https://www.cnblogs.com/LY1124/p/4671470.html
Copyright © 2011-2022 走看看