当前位置:   article > 正文

Android RadioButton控件

android中radiobutton控件使用方法

 

RadioButton   单选按钮  

 

常用属性:

text  文本

checked=“true”  默认选中

 

一组互斥的单选按钮要放在RadioGroup中。RadioGroup常用属性:

orientation  该组单选按钮的排列方向。

 

示例:

 <RadioGroup
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/gender"
            android:orientation="horizontal">

            <RadioButton
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/male"
                android:text="男"/>
            <RadioButton
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/female"
                android:text="女"/>

</RadioGroup>

 

转载于:https://www.cnblogs.com/chy18883701161/p/10869561.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/675871
推荐阅读
相关标签
  

闽ICP备14008679号