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