Android单选按钮文本错位

时间:2013-09-22 18:02:34

标签: android layout radio-button relativelayout radio-group

我创建了一个包含一些RadioGroupRadioButton的布局。 RadioGroup'父级布局为RelativeLayout,如果可能,我希望与RelativeLayout保持一致。

在大多数设备中,RadioButton的圆圈位于文本的左侧,因为它必须如此:

enter image description here

但在某些设备中(我注意到设置为希伯来语的三星设备存在问题),该圈实际上是 文本,如下所示:

enter image description here

这是我的代码(我删除了布局中与其无关的其他项目):

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/some_color1"
android:gravity="left" >

<RadioGroup
    android:id="@+id/group1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@id/key1"
    android:layout_below="@id/key5"
    android:layout_marginTop="@dimen/size4"
    android:orientation="horizontal" >

    <RadioButton
        android:id="@+id/u_hour"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:checked="true"
        android:gravity="left|center_vertical"
        android:text="@string/hour"
        android:textSize="@dimen/size8" />

    <RadioButton
        android:id="@+id/u_day"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="left|center_vertical"
        android:text="@string/day"
        android:textSize="@dimen/size8" />

    <RadioButton
        android:id="@+id/u_week"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="left|center_vertical"
        android:text="@string/week"
        android:textSize="@dimen/size8" />
</RadioGroup>

我发现这个问题没有任何帮助,请问有人告诉我解决问题的方法吗?

2 个答案:

答案 0 :(得分:1)

问题是您使用的是RelativeLayout。请尝试使用LinearLayout。这是用于水平或垂直排列对象的那个。检查指南或示例;那里有很多。

我会这样试试:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="?android:listPreferredItemHeightLarge"
    android:orientation="horizontal"
    android:showDividers="middle"
    android:divider="?android:dividerVertical"
    android:dividerPadding="8dp"
    android:gravity="center"
    android:background="#FFFFFF"
    android:layout_marginTop="8dp">



<RadioButton
    android:id="@+id/u_hour"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:checked="true"
    android:gravity="left|center_vertical"
    android:text="@string/hour"
    android:textSize="@dimen/size8" />

<RadioButton
    android:id="@+id/u_day"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="left|center_vertical"
    android:text="@string/day"
    android:textSize="@dimen/size8" />

<RadioButton
    android:id="@+id/u_week"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="left|center_vertical"
    android:text="@string/week"
    android:textSize="@dimen/size8" />

</LinearLayout>

此外,here是一个使用RadioGroup的示例教程。

答案 1 :(得分:0)

如果某些设备中的错误仍然存​​在,我还建议您使用LinearLayout代替RelativeLayout