RadioGroupとを含むレイアウトを作成しましたRadioButton。のRadioGroup親レイアウトはRelativeLayoutで、できれば のままにしたいRelativeLayoutです。
ほとんどのデバイスでは、次のように、円はRadioButtonテキストの左側にあります。

しかし、一部のデバイス (ヘブライ語に設定されている Samsung デバイスの問題に気付きました) では、円は実際には次のようにテキスト上に表示されます。

これが私のコードです(レイアウト内の無関係な他のアイテムを削除しました):
<?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>
この問題で役立つものは何も見つかりませんでした。誰かが解決方法を教えてくれませんか?