当前位置:首页 » 安卓系统 » 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>

热点内容
c语言写小游戏 发布:2025-05-28 08:16:18 浏览:167
罗技g502鼠标宏编程 发布:2025-05-28 08:12:36 浏览:335
奥奇传说电脑服务器无法登录 发布:2025-05-28 08:10:47 浏览:591
源码单 发布:2025-05-28 08:01:30 浏览:920
脚本元素必选 发布:2025-05-28 07:50:52 浏览:566
和平精英体验服脚本群 发布:2025-05-28 07:50:04 浏览:223
linux嵌套if 发布:2025-05-28 07:49:17 浏览:66
禁止爬虫访问 发布:2025-05-28 07:45:28 浏览:303
闪速存储器是u盘吗 发布:2025-05-28 07:44:03 浏览:221
腐竹和西兰花配置怎么炒 发布:2025-05-28 07:38:16 浏览:321