android RadioButton Problem in Android 4

Ich habe eine einfache Bewerbung. Der Bildschirm wird in einem RelativeLayout erstellt. Ich habe mehr LinearLayout (s), einer von ihnen zeigt die 2 RadioButton (s), so:

        <LinearLayout android:layout_width="match_parent" android:layout_height="fill_parent"
            android:padding="3dp" android:gravity="center">
            <RadioGroup android:id="@+id/rgrDayToReport" 
                android:orientation="horizontal" 
                android:layout_width="wrap_content" android:layout_height="wrap_content">
                <RadioButton android:checked="true" android:id="@+id/rbtnToday"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"

                    android:text="@string/radioTodayText"/>
                <RadioButton  android:id="@+id/rbtnYesterday"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"

                    android:text="@string/radioYesterdayText"/>
            </RadioGroup>
        </LinearLayout>

Dieses Panel wird in jedem Gerät (wie ich es getestet habe) mit Ausnahme von Samsung Galaxy S3 korrekt dargestellt. Auf diesem Gerät (nur auf diesem Gerät) sieht der Bildschirm folgendermaßen aus:

Wie soll ich das beheben?

Antworten auf die Frage(4)

Ihre Antwort auf die Frage