我在一個下面的radiogroup中使用兩個單選按鈕。上面的按鈕有文字「to」,另一個有「from」。我想要的是,兩者都將在中心,但他們將由他們的checkradio對齊。我嘗試這樣做:通過checkradio對齊單選按鈕
<RadioGroup
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/rgroup_pk"
android:gravity="center">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/rbtn_to"
android:text="@string/title_to"
android:checked="true"
android:gravity="center|center_vertical" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/rbtn_from"
android:text="@string/title_from"
android:gravity="center|center_vertical" />
</RadioGroup>
這使得按鈕停留在垂直和水平中心,但由於他們的文字有不同的大小是什麼顯示的是這個(如果「x」是checkradio):
X to
X from
而我想是這樣的:
x to
x from
嘗試改變'安卓重力=「中心| center_vertical」''到安卓重力=「左」' – 2015-02-06 09:09:28