【安卓---RedioButton(单选按钮)CheckBox(复选按钮)】博观而约取,厚积而薄发。这篇文章主要讲述安卓---RedioButton(单选按钮)CheckBox(复选按钮)相关的知识,希望能为你提供帮助。
<
RadioGroup
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:checkedButton="@+id/rb2"
>
<
RadioButton
android:id="@+id/rb1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="西瓜"
android:textColor="#ff0000"
>
<
/RadioButton>
<
RadioButton
android:id="@+id/rb2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="香蕉"
android:textColor="#ff0000"
>
<
/RadioButton>
<
/RadioGroup>
<
CheckBox
android:checked="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="荔枝"
>
<
/CheckBox>
<
CheckBox
android:checked="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="车厘子"
>
<
/CheckBox>
推荐阅读
- 2017年Q1安卓ROOT类恶意病毒发展趋势研究报告
- 推断client手机类型,并跳转到对应的app下载页面
- Hybrid App适配Android注意点
- 安卓端通过http对Mysql进行增删改查
- Android studio没有org.apache.http.client.HttpClient;等包问题 解决方案
- 下拉列表框安卓3
- 初学安卓
- 安卓---TextVies
- Android 使用图片异步载入框架Universal Image Loader的问题