1

したがって、最初の ImageView が画面の上部にあり、7 番目が画面の下部 (2.7 インチ) に垂直に 7 つの ImageView があります。

このアプリを大画面(4.7インチ)にインストールすると、最初の画像はトップ画面に表示されますが、7番目の画像は画面の中央に表示されます.2.7インチのようにぴったり収まるようにしたい.

画像のサイズを自動的に大きくしたいのですが、その方法がわかりません。

<LinearLayout 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="@drawable/wallpaper_08"
android:orientation="vertical" >

<ImageView
    android:id="@+id/imageView9"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_launcher" />

<ImageView
    android:id="@+id/imageView8"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_launcher" />

<ImageView
    android:id="@+id/imageView7"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_launcher" />

<ImageView
    android:id="@+id/imageView6"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_launcher" />

<ImageView
    android:id="@+id/imageView5"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_launcher" />

<ImageView
    android:id="@+id/imageView4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_launcher" />

<ImageView
    android:id="@+id/imageView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_launcher" />       

</LinearLayout>
4

2 に答える 2

2

とを使用android:layout_height="0px"android:layout_weight=""ます。

すべての ImageView に以下を適用します。

android:layout_height="0px"
android:layout_weight="1"
于 2014-02-26T19:42:58.297 に答える