複数の画像/スケール/配置で構成されたxml背景を作成することはできますか? Android レイアウトの背景として使用できる複雑なドローアブル xml を用意します。
たとえば、これは私がやりたい動的 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 に設定できることを見ましたが、スケールと配置についてはどうですか? この視覚的なレンダリングを行う簡単な方法はありますか?