gpt4 book ai didi

android - 在 Android Studio 的现有背景上添加多张图片

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

我是 android 编程的新手,我想在我已经存在的网格背景中添加图像。

这是我的背景图片,我想在背景的左右两侧添加小图片。说我设计的动画图像,但我不知道程序。任何帮助将不胜感激。

enter image description here

最佳答案

如果要将图像放在背景图像之前,最好使用 FrameLayout 或 RelativeLayout。如果您不希望它在顶部而是在侧面,您应该在“水平”方向使用 LinearLayout。

<FrameLayout android:id="@+id/my_ph"    
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/background_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/sketch" android:layout_alignParentTop="true"/>

<ImageView
android:id="@+id/image2"
android:layout_width="fill_parent"
android:layout_height="fill_paren"
android:layout_alignTop="@id/image"
android:layout_alignLeft="@id/image"
android:layout_alignRight="@id/image"
android:layout_alignBottomp="@id/image"
</FrameLayout>

<LinearLayout
android:id="@+id/my_ph"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<ImageView
android:id="@+id/image1"
android:layout_width="fill_parent"
android:layout_height="fill_paren" </>

<ImageView
android:id="@+id/background_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/sketch" android:layout_alignParentTop="true"/>

<ImageView
android:id="@+id/image2"
android:layout_width="fill_parent"
android:layout_height="fill_paren" </>
</LinearLayout>

关于android - 在 Android Studio 的现有背景上添加多张图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31619413/

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