gpt4 book ai didi

android - 在android中重叠图像

转载 作者:行者123 更新时间:2023-11-29 14:52:11 25 4
gpt4 key购买 nike

我需要创建一个包含两个图像的布局。(我附上了图像文件)。图像应该是第一个应该重叠在第二个上。有人可以帮助我吗,因为我是 android 的新手任何帮助都会很明显。实际上有两张图片,一张是普通图片,另一张有斜线。我想让生成的图片看起来像下面的样子 enter image description here

最佳答案

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

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

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

关于android - 在android中重叠图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14771261/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com