赞
踩
如题单选按钮,就是只能够选中一个,所以我们需要把RadioButton放到RadioGroup按钮组中,从而实现 单选功能!先熟悉下如何使用RadioButton,一个简单的性别选择的例子: 另外我们可以为外层RadioGroup设置orientation属性然后设置RadioButton的排列方式,是竖直还是水平
效果图:
和 CheckBox(复选框) 区别
如题复选框,即可以同时选中多个选项,至于获得选中的值,同样有两种方式: 1.为每个CheckBox添加事件:setOnCheckedChangeListener 2.弄一个按钮,在点击后,对每个checkbox进行判断:isChecked();
实现如下,按下按键,背景高亮
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
.......>
<RadioButton
style="@style/cus_radio"
...... />
<RadioButton
...... />
<RadioButton
....... />
<RadioButton
....... />
</RadioGroup>
其实是在background里面实现的。
<item name="android:background">@drawable/radio_button</item>
radio_button.xml文件放在了在drawable文件下。
drawable
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。