当前位置:首页 » 安卓系统 » android选项卡fragment

android选项卡fragment

发布时间: 2025-05-28 01:09:39

1. 如何实现android中三个单选按钮横向排列且只能选一个

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/row_item_margin">

<TextView
android:id="@+id/tvStorageWay"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="储存方式:"/>

<RadioGroup
android:id="@+id/rgStorageWay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/tvStorageWay"
android:gravity="center_vertical"
android:orientation="horizontal">

<RadioButton
android:id="@+id/rbPack"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@null"
android:drawableLeft="@drawable/selector_login_mode_radiobutton"
android:text="包装"/>

<RadioButton
android:id="@+id/rbBulk"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/row_item_margin"
android:layout_weight="1"
android:button="@null"
android:drawableLeft="@drawable/selector_login_mode_radiobutton"
android:text="散装"/>

<RadioButton
android:id="@+id/rbStorageWayOther"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/row_item_margin"
android:layout_weight="1"
android:button="@null"
android:drawableLeft="@drawable/selector_login_mode_radiobutton"
android:text="其它"/>
</RadioGroup>
</RelativeLayout>

热点内容
pythonrst 发布:2025-09-18 19:28:50 浏览:404
页面访问在线升级 发布:2025-09-18 19:13:46 浏览:773
相机存储满 发布:2025-09-18 19:12:19 浏览:754
如何搭载我的世界服务器 发布:2025-09-18 19:02:39 浏览:426
c语言组框 发布:2025-09-18 19:02:23 浏览:942
如何看见真我手机的全部配置 发布:2025-09-18 18:48:10 浏览:975
战地5默认是什么服务器 发布:2025-09-18 17:59:32 浏览:310
安卓变ios系统主题怎么弄 发布:2025-09-18 17:54:07 浏览:889
linux出口ip 发布:2025-09-18 17:51:57 浏览:950
androidbitmap使用 发布:2025-09-18 17:49:20 浏览:244