ไม่นานมานี้มีการโพสต์ข้อความ แต่สิ่งนี้ช่วยฉันได้
คุณสามารถใช้เลย์เอาต์ที่ซ้อนกัน เริ่มต้นด้วย RelativeLayout และวาง ImageView ของคุณไว้
ตั้งค่าความสูงและความกว้างเป็น match_parent เพื่อเติมหน้าจอ
ตั้งค่า scaleType = "centreCrop" เพื่อให้ภาพพอดีกับหน้าจอและไม่ยืด
จากนั้นคุณสามารถวางในเลย์เอาต์อื่น ๆ ได้ตามปกติเช่น LinearLayout ด้านล่าง
คุณสามารถใช้ android: alpha เพื่อตั้งค่าความโปร่งใสของภาพ
<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"