2つの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>
ご覧のとおり、2つの画像を水平に配置するだけでなく、積み重ねようとしています。2つの画像を並べて配置するために私が間違っていることを誰かが知っていますか?