Android的RadioButton

Android的RadioButton,第1张

概述Android的RadioButton的常见写法<LinearLayoutxmlns:android="http://schemas.android.com/apkes/android"xmlns:tools="http://schemas.android.comools"android:id="@+id/LinearLayout1"android:layout_width="match

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

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存