Android单选框

Android单选框,第1张

概述1、添加布局<RadioGroupandroid:id="@+idadiogroup1"android:layout_height="wrap_content"android:layout_width="match_parent"android:orientation="vertical"><RadioButtonandroid:id

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单选框所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1052498.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存