无法使用背景图像,因为它变得模糊
Unable to use background Image ,as it becomes blurry
我想使用来自 unsplash(jpg 3456*5184,3.21mb) 的图像作为我的 activity 之一的背景图像 android project.I 添加了图片我在 anydpi section.In 布局编辑器预览中的可绘制文件夹正是
与原始图片相同,但是当我在我的像素 3xL 模拟器和真实设备上 运行 时,它显示得如此模糊以至于变得
unusable.So 请帮帮我...
这是我的XML文件代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/nonotes"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".empty_activity">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:background="@drawable/background" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:rotation="-45"
android:text="Nothing To Show"
android:textSize="100sp"
android:textStyle="bold" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/add"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:src="@android:drawable/ic_input_add" />
</RelativeLayout>
对于复杂(大)的光栅图像,我们无法正确缩放它,只能将它放在 any-dpi 文件夹中。
正如official docs所说:
anydpi: This qualifier matches all screen densities and takes precedence over other qualifiers. This is useful for vector drawables. Added in API Level 21
所以有两种方式:
获取矢量可绘制资源。
在不同的可绘制目录中添加不同的图像,它们是:
low-density (ldpi) 屏幕 (~120dpi) 的 ldpi 资源。
mdpi medium-density (mdpi) 屏幕 (~160dpi) 的资源。 (这是基线密度。)
high-density (hdpi) 屏幕 (~240dpi) 的 hdpi 资源。
xhdpi extra-high-density (xhdpi) 屏幕 (~320dpi) 的资源。
xxhdpi 额外 high-density (xxhdpi) 屏幕 (~480dpi) 的资源。
xxxhdpi extra-extra-extra-high-density (xxxhdpi) 使用 (~640dpi) 的资源。
我想使用来自 unsplash(jpg 3456*5184,3.21mb) 的图像作为我的 activity 之一的背景图像 android project.I 添加了图片我在 anydpi section.In 布局编辑器预览中的可绘制文件夹正是 与原始图片相同,但是当我在我的像素 3xL 模拟器和真实设备上 运行 时,它显示得如此模糊以至于变得 unusable.So 请帮帮我... 这是我的XML文件代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/nonotes"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".empty_activity">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:background="@drawable/background" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:rotation="-45"
android:text="Nothing To Show"
android:textSize="100sp"
android:textStyle="bold" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/add"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:src="@android:drawable/ic_input_add" />
</RelativeLayout>
对于复杂(大)的光栅图像,我们无法正确缩放它,只能将它放在 any-dpi 文件夹中。
正如official docs所说:
anydpi: This qualifier matches all screen densities and takes precedence over other qualifiers. This is useful for vector drawables. Added in API Level 21
所以有两种方式:
获取矢量可绘制资源。
在不同的可绘制目录中添加不同的图像,它们是:
low-density (ldpi) 屏幕 (~120dpi) 的 ldpi 资源。
mdpi medium-density (mdpi) 屏幕 (~160dpi) 的资源。 (这是基线密度。)
high-density (hdpi) 屏幕 (~240dpi) 的 hdpi 资源。
xhdpi extra-high-density (xhdpi) 屏幕 (~320dpi) 的资源。
xxhdpi 额外 high-density (xxhdpi) 屏幕 (~480dpi) 的资源。
xxxhdpi extra-extra-extra-high-density (xxxhdpi) 使用 (~640dpi) 的资源。