Is it possible to create an xml background consisting of several images / scaling / alignment? And therefore have a complex flexible xml that can be used as the background for the Android layout.
For example, this is a dynamic xml background that I would like to do: 
So, for all my various activities, put my different layouts / views above: 
I know that I canβt set the layout as layout_background, but here is the design of what I would like to do (according to previous shots):
<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>
I saw that we can set bitmap to drawable xml, but for scaling and alignment? Is there an easier way to do this visual rendering?
Bibix source share