在android中查看重叠图像

时间:2013-02-08 11:11:59

标签: android

我需要创建一个包含两个图像的布局。(我附加图像文件)。图像应该是第一个应该重叠在第二个。可以帮助我,因为我是一个新手到android任何帮助都会很明显。实际上有两个图像是一个普通图像,另一个是斜线。我想让结果图像显示如下enter image description here

1 个答案:

答案 0 :(得分:6)

你需要一个像这样的框架布局:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
       android:orientation="vertical"
       android:layout_width="match_parent"
       android:layout_height="match_parent">
  <ImageView
            android:id="@+id/image1"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:src="@drawable/image1"/>
  <ImageView
            android:id="@+id/image2"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:src="@drawable/image2"/>

这会将项目布局在彼此之上。 :)