當前位置:首頁 » 安卓系統 » 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>

熱點內容
禁止爬蟲訪問 發布:2025-05-28 07:45:28 瀏覽:300
閃速存儲器是u盤嗎 發布:2025-05-28 07:44:03 瀏覽:219
腐竹和西蘭花配置怎麼炒 發布:2025-05-28 07:38:16 瀏覽:320
安卓機怎麼接收蘋果機的照片 發布:2025-05-28 07:33:19 瀏覽:930
ftp更換html內容 發布:2025-05-28 07:21:14 瀏覽:698
為什麼我c語言編譯失敗 發布:2025-05-28 07:17:01 瀏覽:478
sdk22安卓版哪個版本好 發布:2025-05-28 07:12:39 瀏覽:111
oppo如何破解密碼 發布:2025-05-28 06:54:53 瀏覽:927
懸浮文件夾怎樣做 發布:2025-05-28 06:49:03 瀏覽:1003
伺服器怎麼找屏幕 發布:2025-05-28 06:48:24 瀏覽:643