이것이 게시 된 지 오래되었습니다. 그러나 이것은 나를 도왔습니다.
중첩 된 레이아웃을 사용할 수 있습니다. 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"