1

我想水平放置两个 ImageView,但我无法正确定位。

 <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" 

        >

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent" android:scaleType="fitXY">


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

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:scaleType="fitXY"
                android:layout_alignBottom="@+id/imageView3"

                android:src="@drawable/some_image_ontop" />



        </RelativeLayout> 

        <RelativeLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content" android:scaleType="fitXY" >


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

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:scaleType="fitXY"
                android:layout_alignBottom="@+id/imageView4"
                android:src="@drawable/some_other_image_ontop" />

        </RelativeLayout>
    </LinearLayout>

如您所见,除了水平放置它们之外,我还试图将两个图像堆叠在一起。有人知道我把两张图片放在一起做错了什么吗?

4

2 回答 2

1

为了使其更简单,请将您的 ImageViews 包含在LinearLayout其中并将其属性设置为android:orientation="horizontal"

例如:

...
         <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal">


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

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:scaleType="fitXY"

                android:src="@drawable/some_image_ontop" />



        </LinearLayout>
...
于 2012-06-13T14:34:44.023 回答
0

我最终能够弄清楚。RelativeLayouts 被设置为“匹配父级”,这迫使它们占据水平行中的所有空间,从而区分另一张图片。

        >


        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:scaleType="fitXY" >




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

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:scaleType="fitXY"
                android:layout_alignBottom="@+id/imageView3"

                android:src="@drawable/black_list_2" />

        </RelativeLayout>

        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:scaleType="fitXY" >


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

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:scaleType="fitXY"
                android:layout_alignBottom="@+id/imageView4"
                android:src="@drawable/black_list_2" />

        </RelativeLayout>
    </LinearLayout>
于 2012-06-13T14:49:58.100 回答