是否可以制作由多个图像/比例/对齐组成的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,但是用于缩放和对齐?有没有更简单的方法来进行这种视觉渲染?