使用 mipmap 资源目录时图像在 ImageView 中显示为模糊

Image is shown as blurred in ImageView while using mipmap resource directory

ImageView 中为 Android Studio 加载图像时使用 android:src="@mipmap/stunner 我的图像变得 模糊了 ,怎么办??请帮忙...

我的代码如下:

<ImageView
    android:src="@mipmap/stunner"
    android:adjustViewBounds="true"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="2dp"/>

请将其用作可绘制对象,而不是将其用作 mipmap。 Mipmap 用于应用程序图标但不用于可绘制对象

这是代码和可绘制的输出

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/archive_task_open_btn"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:visibility="visible">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="2dp"
        android:adjustViewBounds="true"
        android:src="@drawable/bg" />
</FrameLayout>