我已经设置了横向,我的应用程序的最后一个按钮(第八个)不适合我的三星 mini S3 的 4 英寸屏幕。它适合模拟器上更大的屏幕尺寸。我尝试将父级设置为固定尺寸,收音机在实际设备上,按钮似乎更加分散。有什么想法吗?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#111111"
android:gravity="left"
tools:context=".MainActivity" >
<RadioGroup
android:id="@+id/RadioGroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:orientation="vertical" >
<RadioButton
android:id="@+id/RadioButtonlowC1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:layout_marginTop="0dp"
android:button="@drawable/my_radio"
android:checked="false" />
<RadioButton
android:id="@+id/RadioButtonD1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:button="@drawable/my_radio" />
<RadioButton
android:id="@+id/RadioButtonE1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:button="@drawable/my_radio" />
<RadioButton
android:id="@+id/RadioButtonF1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:button="@drawable/my_radio" />
<RadioButton
android:id="@+id/RadioButtonG1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:button="@drawable/my_radio" />
<RadioButton
android:id="@+id/RadioButtonA1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:button="@drawable/my_radio" />
<RadioButton
android:id="@+id/RadioButtonB1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:button="@drawable/my_radio" />
<RadioButton
android:id="@+id/RadioButtonC1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:button="@drawable/my_radio" />
</RadioGroup>