0

ゲームのレイアウトがありますが、別のサイズの画面には収まりません。

<supports-screens android:smallScreens="true"
    android:normalScreens="true" android:largeScreens="true"
    android:anyDensity="true">
</supports-screens>

私のマニフェストで、私のxmlファイルはfill_parentに設定されています。

これが私のxmlコードの1つです:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/mainlay"
    android:orientation="vertical" android:background="@drawable/menubackground">

    <Button
        android:id="@+id/cloud"
        android:layout_width="87dp"
        android:layout_height="57dp"
        android:background="@drawable/clouds" android:layout_marginTop="130dp"/>



    <Button
        android:id="@+id/newgame"
        android:layout_width="168dp"
        android:layout_height="63dp"
        android:layout_marginRight="7dp"
        android:layout_marginTop="50dp"
        android:background="@drawable/mainbuttoncontrol1" />


    <Button
        android:id="@+id/highscores"
        android:layout_width="166dp"
        android:layout_height="44dp"
        android:layout_marginRight="7dp"
        android:background="@drawable/mainbuttoncontrol3" />


    <Button
        android:id="@+id/settings"
        android:layout_width="165dp"
        android:layout_height="38dp"
        android:layout_marginRight="7dp"
        android:background="@drawable/mainbuttoncontrol4" />


    <Button
        android:id="@+id/instructions"
        android:layout_width="164dp"
        android:layout_height="61dp"
        android:layout_marginRight="7dp"
        android:background="@drawable/mainbuttoncontrol2" />

    <RelativeLayout android:layout_width="wrap_content" android:id="@+id/rl_onoff"
    android:layout_height="wrap_content">
<ImageView android:id="@+id/on_btn" android:layout_width="50dp"  android:layout_height="50dp" android:src="@drawable/soundon" android:visibility="visible" android:layout_alignParentBottom="true" android:layout_alignParentRight="true"></ImageView>
<ImageView android:id="@+id/off_btn" android:layout_width="50dp"  android:layout_height="50dp" android:src="@drawable/soundoff" android:visibility="invisible" android:layout_alignParentBottom="true" android:layout_alignParentRight="true"></ImageView>
   </RelativeLayout>

</LinearLayout>

異なる画面サイズに収まらない理由を見つけるのを手伝ってもらえますか?

前もって感謝します。

4

1 に答える 1

2

それをサポートしても、自動スケーリングされるわけではないためです。画面サイズと画面密度に応じて「異なる」レイアウトを作成する必要があります。

これを読む

于 2012-09-27T08:29:33.257 に答える