このような ImageView を表示しようとしています
<ImageView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_above="@+id/tuto_continue"
android:layout_below="@+id/tuto_title"
android:scaleType="fitCenter"
android:src="@drawable/tuto1" />
通常、幅全体を埋める必要があります。写真の実際のサイズは 1000*1089 ですが、実行時にBitmap too large to be uploaded into a texture (2000x2178, max=2048x2048)
すべてのデバイスで使用可能なスペース全体に画像を表示するにはどうすればよいですか? ピクセル化を防ぐために、xxhdpi または xxxhdpi でアップスケールしたくありません。
ありがとう