AndroID的Radiobutton的常见写法
<linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" xmlns:tools="http://schemas.androID.com/tools" androID:ID="@+ID/linearLayout1" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:orIEntation="vertical" tools:context=".MainActivity" > <TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="请选择性别" androID:textSize="23dp" /> <RadioGroup androID:ID="@+ID/radioGroup" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:orIEntation="horizontal"> <Radiobutton androID:ID="@+ID/btnMan" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="男" androID:checked="true"/> <Radiobutton androID:ID="@+ID/btnWoman" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="女"/> </RadioGroup> <button androID:ID="@+ID/btnpost" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="提交"/></linearLayout>
Radiobutton的继承关系图
@H_301_8@
总结
以上是内存溢出为你收集整理的Android的RadioButton全部内容,希望文章能够帮你解决Android的RadioButton所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)