RadioButton是单选按钮,android:checked代表着这个按钮是否选中,如果android:checked=“ture”,那么代表这个按钮被选中。
在安卓中,RadioButton经常和RadioGroup配合使用来实现单选框的单选效果,RadioGroup是单选组合框,可以容纳很多RadioButton但是并不会出现多个单选框被选中的现象。
RadioGroup和RadioButton的使用语法:
< RadioGroup
android:属性名称=“属性值”
. . . . . . >
< RadioButton
android:属性名称=“属性值”
. . . . . . />
< /RadioGroup >
我们可以通过一个案例来了解RadioGrooup和RadioButton的使用
来实现一个选择性别的案例
先创建一个名为RadioButton的应用程序,包指定为cn.itcast.radiobutton
在res/layout文件夹的activity_main.xml放置一个RadioGroup来放置两个RadioButton来分别显示“”男”,“女”的单选按钮,
在MainActivity设置RadioGroup的监听事件,监听RadioButton更改的监听事件,并且获取被选中的RadioButton的id
单选按钮的案例就到这了