私はこれに不慣れなので許してください。ドキュメントとインターネット全般を検索してみましたが、理解できません。これは私のXMLです:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#000000" >
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:contentDescription="@string/desc"
android:src="@drawable/my_image" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="@string/hello_world"/>
</RelativeLayout>
次のようになります。
ボタンを完全に不透明にし、背景画像がボタンと混ざらないようにしたいだけです。つまり、画像を背景に配置し、ボタンをその上にしっかりと表示する必要があります。私は両方の要素のアルファ設定で遊んだのですが、それを理解することができませんでした。ありがとう。