我需要對齊RadioGroup中的RadioButton,就像RelativeLayout一樣。我讀過RadioGroup是從LinearLayout繼承的,可能我不能像內部的RelativeLayout那樣對齊內容。我試圖實現的實際內容是RadioGroup中的兩行,第一行包含兩個RadioButton,在第二行中,我必須在其開始處添加另一個按鈕。我怎麼能這樣做?我如何對齊radiogroup android內的單選按鈕?
0
A
回答
0
你可以嘗試這種佈局,讓我知道,如果這對你有用。如果需要,我可以修改。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp">
<RadioButton
android:id="@+id/radioButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Red"/>
<RadioButton
android:id="@+id/radioButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Blue"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<RadioButton
android:id="@+id/radioButton3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Green"/>
</LinearLayout>
</RadioGroup>
</LinearLayout>
1
所有你需要做的是設置在無線電集團定向橫向到它們對齊水平看看下面的代碼。
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical"
android:padding="@dimen/activity_horizontal_margin">
<RadioGroup
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_height="match_parent">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New RadioButton"
android:id="@+id/radioButton" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New RadioButton"
android:id="@+id/radioButton2" />
</RadioGroup>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New RadioButton"
android:layout_gravity="start"
android:id="@+id/radioButton3" />
</LinearLayout>
相關問題
- 1. RadioGroup /按鈕對齊
- 2. RadioGroup中具有相對的Android佈局內的單選按鈕
- 3. 的Android RadioGroup中,單選按鈕
- 4. 對齊div內的單選按鈕
- 5. 對齊radioGroup中的按鈕horzintally
- 6. 如何取消選中Android中的單選按鈕(在radiogroup中)?
- 7. 如何水平對齊單選按鈕
- 8. 如何垂直對齊單選按鈕
- 9. 的Android RadioGroup中,單選按鈕,按鈕同一行
- 10. 單選按鈕對齊
- 11. 使用Android中的圖像製作RadioGroup單選按鈕...如何?
- 12. 如何正確對齊android studio中的單選按鈕?
- 13. 如何在相對的Android佈局中爲單選按鈕進行Radiogroup
- 14. 如何在radioGroup中對齊radioButton和textView?
- 15. 嘗試在複合佈局中對齊RadioGroup中的單選按鈕
- 16. Android單選按鈕選擇
- 17. 單選按鈕android
- 18. RadioGroup在Android中對齊
- 19. Ext RadioGroup - 如何訪問所選單選按鈕的值?
- 20. 如何在XMLUI radiogroup中設置選定的單選按鈕?
- 21. Android的單選按鈕
- 22. Android按鈕對齊
- 23. Android的單選按鈕
- 24. 如何在中心對齊時使單選按鈕齊平?
- 25. 與單選按鈕的面板對齊
- 26. 在同一個radiogroup中水平和垂直對齊單選按鈕
- 27. android-單選按鈕
- 28. radioGroup如何隱藏按鈕android
- 29. 機器人 - 單選按鈕和RadioGroup中
- 30. 使用RadioGroup中和單選按鈕
無法正常工作。對齊是好的。但它不會表現爲一個無線電組。我可以選擇多個按鈕。 –