私のアプリケーションでは、テキストを画像ビューの上に 2 dp のパディングで表示したいと考えています。しかし、プログラムを実行すると、テキストビューが画像をオーバーレイします。<merge> </merge> を使用してテキストビューの下に画像を 2dp 表示するにはどうすればよいですか?
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_gravity="center_vertical|center_horizontal">
<ImageView
android:id="@+id/item_image"
android:layout_width="253dp"
android:layout_height="240dp"
android:layout_gravity="center"
android:scaleType="fitXY"
android:src="@drawable/one_louisrossi" />
<TextView
android:id="@+id/title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/fourty_eight"
android:layout_weight="1.30"
android:gravity="center_horizontal"
android:text="xxxxxx"
android:textColor="@color/white"
android:textSize="@dimen/eighteen"
android:textStyle="bold" />
</merge>