gpt4 book ai didi

Android,如何将图像放在另一个图像上?

转载 作者:行者123 更新时间:2023-11-30 04:19:25 26 4
gpt4 key购买 nike

在我的项目中,我有一个菜单。对于菜单的设计,我想使用 gridView。为简单起见,假设此 GridView 只有一项。此项目有两个单独的图像(background.png 和 news.png)和一个文本(例如“NEWS”)。

是否可以通过xml或代码将news.png映射到background.png上?

谢谢你帮助我。

最佳答案

是的,您始终可以使用 FrameLayout 来做到这一点 在xml文件中,像这样。

<FrameLayout android:id="@+id/frameLayout1"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView android:id="@+id/imageView1" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:src="@drawable/background"></ImageView>
<ImageView android:id="@+id/imageView2" android:layout_width="wrap_content"
android:layout_gravity="center" android:layout_height="wrap_content"
android:src="@drawable/news"></ImageView>
<TextView android:text="NEWS" android:id="@+id/textView1" android:layout_gravity="bottom|center_horizontal"
android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
</FrameLayout>

关于Android,如何将图像放在另一个图像上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9493855/

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