0

ImageViews画面の下部に同じ重みで3つ表示したい。ただし、画像のサイズは固定されていません。2 つの画像を表示したいのですが、1 つを非表示にする必要があります。どうすればよいですか? 隣り合う
3 つの間のスペースを調整する方法と、3 つ目が画面に表示されている2 つに重ならないようにする方法は?ImageViewsImageViewImageViews

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:background="@drawable/main_imge_1"
   android:orientation="vertical" >

  <ImageView
    android:id="@+id/imageView5"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"

    android:background="#F9F939"
    android:src="@drawable/ic_launcher"
    android:layout_toLeftOf ="@+id/imageView6"
  android:layout_alignParentBottom="true"
    android:padding="15dp" />

 <ImageView
    android:id="@+id/imageView6"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#54F71D"

    android:src="@drawable/ic_launcher"
    android:layout_alignParentBottom="true"
    android:padding="15dp"
    android:layout_margin="10dp" />

  <ImageView
    android:id="@+id/imageView7"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#1DF7AB"
    android:src="@drawable/ic_launcher"
  android:layout_alignParentBottom="true"
    android:layout_toRightOf="@+id/imageView6"
    android:padding="15dp" />

</RelativeLayout>
4

3 に答える 3

3

この方法を試してください

<?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:gravity="center|bottom" >

    <ImageView
        android:id="@+id/imageView5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        android:layout_weight="1"
        android:background="#F9F939"
        android:src="@drawable/ic_launcher" />

    <ImageView
        android:id="@+id/imageView6"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        android:layout_weight="1"
        android:background="#54F71D"
        android:src="@drawable/ic_launcher" />

    <ImageView
        android:id="@+id/imageView7"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        android:layout_weight="1"
        android:background="#1DF7AB"
        android:src="@drawable/ic_launcher" />

</LinearLayout>

出力

ここに画像の説明を入力

于 2013-09-25T11:20:09.883 に答える
1

私が解読できたことから、あなたはおそらくこれを達成しようとしています:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 >

    <LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_alignParentBottom="true"
        android:gravity="center_horizontal">


        <ImageView
    android:id="@+id/imageView5"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#F9F939"
    android:src="@drawable/ic_launcher"
    android:padding="15dp"
    android:layout_weight="1"
    />

  <ImageView
    android:id="@+id/imageView6"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#F9F939"
    android:src="@drawable/ic_launcher"
    android:padding="15dp"
    android:layout_weight="1"
    />

  <ImageView
    android:id="@+id/imageView7"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#F9F939"
    android:src="@drawable/ic_launcher"
    android:padding="15dp"
    android:layout_weight="1"
    />


    </LinearLayout>

</RelativeLayout>

結果:

ここに画像の説明を入力

重要なのは、囲みを使用してLinearLayoutを保持し、ImageViewそれを のLinearLayout下部に揃えることRelativeLayoutです。

于 2013-09-25T11:21:49.193 に答える
0

ImageView ごとに android:layout_weight="1" を使用します。RelativeLayout を Linearlayout に置き換えます。

于 2013-09-25T11:24:51.610 に答える