使用 android:src =“ @ mipmap / stunner 在Android Studio的 ImageView 中加载图像时,我的图像变得模糊了,什么要做吗?请帮助...
我的代码如下:
<ImageView
android:src="@mipmap/stunner"
android:adjustViewBounds="true"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="2dp"/>
答案 0 :(得分:1)
请使用它作为可绘制对象,而不是将其用作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>