android 菜单的详介
2013-10-06 14:11:33 来源:WEB开发网核心提示:}}}}7.4.RadionButton控件7.4.1.概述单选按钮是UI中常用的元素,类名:RadioButton,android 菜单的详介(4),如图-3所示:图-37.4.2.常用属性Checked:控件是否处于选中状态7.4.3.【示例代码】以下代码定义了图-3中两个RadioButton控件的显示样式: &
}
}
}
}
7.4.RadionButton控件
7.4.1.概述
单选按钮是UI中常用的元素,类名:RadioButton,如图-3所示:
图-3
7.4.2.常用属性
Checked:控件是否处于选中状态
7.4.3.【示例代码】
以下代码定义了图-3中两个RadioButton控件的显示样式:
<RadioButton
android:id="@+id/rbMale"
android:text="男"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"/>
<RadioButton
android:id="@+id/rbFeMale"
android:text="女"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
7.5.RadionGroup控件
7.5.1.概述
以上代码中的两个控件还不能形成互斥的效果,即男和女两个控件可以同时处于选中状态。在Android中必须用RadioGroup控件将一组需要互斥的RadioButton包括起来。
7.5.2.【示例代码】
将以上代码改进,形成男和女两个RadioButton互斥(即不能同时处于选中状态)的效果,如下代码所示:
<RadioGroup
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/rbMale"
更多精彩
赞助商链接