gpt4 book ai didi

Android - xml布局作为背景

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:25:40 26 4
gpt4 key购买 nike

是否可以制作由多个图像/比例/对齐组成的 xml 背景?因此有一个复杂的可绘制 xml 可用作 android 布局的背景。

例如,这是我想要做的动态 xml 背景: enter image description here

因此,对于我所有的不同 Activity ,将我的不同布局/ View 放在上面: enter image description here

我知道我不能将布局设置为 layout_background,但这是我想做的设计(根据之前的图片):

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background_image" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" >

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/main_image" />
</RelativeLayout>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="2" >

<ImageView
android:layout_width="wrap_content"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:src="@drawable/footer_image" />
</RelativeLayout>
</LinearLayout>

</RelativeLayout>

我看到我们可以将位图设置为可绘制的 xml,但是为了缩放和对齐?有没有更简单的方法来制作这种视觉效果图?

最佳答案

你可以在dynamic xml background中根据需要创建一个Layout并且可以IncludeRelativeLayout 后面的所有屏幕中都是这样

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width=”match_parent”
android:layout_height=”match_parent”
android:background="@color/app_bg"
android:gravity="center_horizontal">

<include layout="@layout/my_dynamic_layout"/>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

...Your layout code ...

</RelativeLayout >

</RelativeLayout >

关于Android - xml布局作为背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15500996/

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