8

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

例如,这是我想做的动态 xml 背景: 在此处输入图像描述

因此,对于我所有不同的活动,将我不同的布局/视图放在上面: 在此处输入图像描述

我知道我不能将布局设置为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,但是用于缩放和对齐?有没有更简单的方法来进行这种视觉渲染?

4

2 回答 2

10

您可以根据需要创建一个布局, dynamic xml background并且可以像这样包含在后面的所有屏幕中RelativeLayout

<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 >
于 2013-03-19T13:46:58.727 回答
0

我很确定您的要求是什么,假设您想将一些具有不同图像的 xml 文件放在一个 xml 文件中,我将给出答案。

根据您的要求创建 3 个布局,然后在要放置这 3 个布局的位置创建一个主布局。

-

  • 例如:假设你有

一个.xml

二.xml

三.xml

并假设您已根据您的要求将您选择的背景应用于上述所有布局

现在在 main.xml

< LinearLayout
---
--->
< include
android:layout_width="fill_parent" android:layout_height="wrap_content"
layout="@layout/one.xml" />
< include
android:layout_width="fill_parent" android:layout_height="wrap_content"
layout="@layout/two.xml" />
< include
android:layout_width="fill_parent" android:layout_height="wrap_content"
layout="@layout/3.xml" />
< /LinearLayout>

根据您的要求安排布局,如果您需要按一定百分比划分这些布局,请使用 weight=".50"

希望它对你有用。

于 2013-03-19T13:58:41.470 回答