android图像叠加中的XML布局

时间:2014-10-16 09:36:13

标签: android

 <LinearLayout>
                    android:id="@+id/row2"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" >

                    <ImageView
                        android:id="@+id/ImageView1"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center_horizontal"
                        android:src="@drawable/card1" />

                    <ImageView
                        android:id="@+id/ImageView2"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_alignParentBottom="true"
                        android:src="@drawable/cardshadow"/>
    </LinearLayout>

我已经尝试过这段代码并正常使用任何建议?输出图像正好位于图像下方..我希望将图像放在图像1下方

2 个答案:

答案 0 :(得分:0)

替换你的XMlfile
<RelativeLayout
        android:id="@+id/row2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center" >

        <ImageView
            android:id="@+id/ImageView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:src="@drawable/card1" />

        <ImageView
            android:id="@+id/ImageView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:layout_marginTop="15dp"
            android:src="@drawable/cardshadow" />

    </RelativeLayout>

答案 1 :(得分:0)

在布局代码中使用

机器人:取向=&#34;垂直&#34;