我有一个简单的应用程序。屏幕是在 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>
该面板在除三星 Galaxy s3 之外的任何设备(正如我所做的测试)中都能正确呈现。在此设备上(仅在此设备上)屏幕如下所示:
我应该如何解决这个问题?