0

横向きに設定しましたが、アプリの最後のボタン (8 番目) は、samsung 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>
4

1 に答える 1