У меня есть простое приложение. Экран встроен в RelativeLayout. у меня есть больше LinearLayout (s), один из них показывает 2 RadioButton (s), например:
<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>
Эта панель корректно отобразится на любом устройстве (как и в тестах), кроме Samsung Galaxy s3. На этом устройстве (только на этом устройстве) экран выглядит следующим образом:
Как это исправить?