1

我需要创建一个包含两个图像的布局。(我正在附上图像文件)。图像应该是第一个应该重叠在第二个上。请一些人帮助我,因为我是 android 的新手,任何帮助都会是可观的。实际上有两个图像,一个是普通图像,另一个有斜线。我想让结果图像看起来像下面这样在此处输入图像描述

4

1 回答 1

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"/>

这将在彼此的顶部布局项目。:)

于 2013-02-08T11:21:08.873 回答