我设置了横向,我的应用程序的最后一个按钮(第八个)不适合我的三星迷你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>
答案 0 :(得分:0)
使用scrollview
包装相对布局<ScrollView 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"
tools:context=".MainActivity" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#111111"
android:gravity="left" >
<!-- your stuff -->
</RelativeLayout>
</ScrollView>