1、添加布局
<RadioGroup androID:ID="@+ID/radiogroup1" androID:layout_height="wrap_content" androID:layout_wIDth="match_parent" androID:orIEntation="vertical"> <Radiobutton androID:ID="@+ID/radiobutton1" androID:layout_height="wrap_content" androID:layout_wIDth="match_parent" androID:text="是" /> <Radiobutton androID:ID="@+ID/radiobutton2" androID:layout_height="wrap_content" androID:layout_wIDth="match_parent" androID:text="否" /></RadioGroup>
2、获取控件
@BindVIEw(R.ID.radiobutton1)Radiobutton radiobutton1;@BindVIEw(R.ID.radiobutton2)Radiobutton radiobutton2;
3、获取单选控件状态
if(radiobutton1.isChecked()) healthReport.setoption("1");else healthReport.setoption("2");
这是单选框的常用功能,通过其他控件触发,获取单选框选择结果。
虽然是一个非常简单的应用,保存模板方便以后使用
以上是内存溢出为你收集整理的Android单选框全部内容,希望文章能够帮你解决Android单选框所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)