Bu yayınlandığından beri bir süre oldu, ama bu bana yardımcı oldu.
İç içe mizanpajları kullanabilirsiniz. Bir RelativeLayout ile başlayın ve ImageView'inizi buna yerleştirin.
Yüksekliği ve genişliği ekranı dolduracak şekilde match_parent olarak ayarlayın.
ScaleType = "centreCrop" değerini görüntü ekrana sığacak ve uzamayacak şekilde ayarlayın.
Ardından, aşağıdaki LinearLayout gibi normalde yaptığınız gibi başka düzenler de yerleştirebilirsiniz.
Görüntünün saydamlığını ayarlamak için android: alpha kullanabilirsiniz.
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/image"
android:alpha="0.6"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="There"/>
</LinearLayout>
</RelativeLayout>
android:scaleType="centerCrop"