我创建了一个包含一些RadioGroup
和RadioButton
的布局。 RadioGroup
'父级布局为RelativeLayout
,如果可能,我希望与RelativeLayout
保持一致。
在大多数设备中,RadioButton
的圆圈位于文本的左侧,因为它必须如此:
但在某些设备中(我注意到设置为希伯来语的三星设备存在问题),该圈实际上是 文本,如下所示:
这是我的代码(我删除了布局中与其无关的其他项目):
<?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>
我发现这个问题没有任何帮助,请问有人告诉我解决问题的方法吗?
答案 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
。