ImageView 中的图像显示得非常模糊
Image inside ImageView is showing really blurry
我正在尝试开发一个 android 小应用程序,它将使用图像识别犬种。识别狗后,它会在另一个 activity 中保存品种名称,并附有图片。这些保存在一个 MaterialCardView 中,它有一个 Linearlayout,一个用于图片的 ImageView,一个用于删除的 TextView 和一个 ImageButton。在预览 window 中,一切看起来都很好:
Preview Window
,但是当我在我的 phone 上进行测试时,图像非常模糊,或者非常放大,我什至不知道如何描述它:
Actual app。
我尝试了很多图片,也尝试了我在网上看到的大部分解决方案,但没有任何效果。我也是 android 的初学者,所以这可能是我看不到的非常简单的东西。
这是布局的 xml 代码:
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="15dp"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="15dp"
android:elevation="15dp"
android:orientation="horizontal"
>
<ImageView
android:layout_width="150dp"
android:layout_height="150dp"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/affenpinscher"
android:id="@+id/img_content"
/>
<TextView
android:id="@+id/txv_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"
android:layout_weight="100"
android:gravity="center"
android:padding="4dp"
android:textSize="14sp"
/>
<ImageButton
android:id="@+id/ibt_delete"
android:layout_width="30dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:textStyle="bold"
android:background="@android:color/transparent"
android:src="@android:drawable/ic_delete"
/>
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
也试过android:scaleType="centerCrop"或者只是"center",都是一样的。
图片为 220x330
图像模糊,因为其分辨率高于 imageView 当前尺寸所支持的分辨率。
所以你必须调整图像的大小。
转到 IDE 设置 -> 插件 -> 搜索“ Android Drawable Importer 并安装它 -> 重新启动 IDE
安装后,右键单击 drawable 文件夹,然后:New-> Batch Drawable Import -> select 您的图像并调整其大小。
我正在尝试开发一个 android 小应用程序,它将使用图像识别犬种。识别狗后,它会在另一个 activity 中保存品种名称,并附有图片。这些保存在一个 MaterialCardView 中,它有一个 Linearlayout,一个用于图片的 ImageView,一个用于删除的 TextView 和一个 ImageButton。在预览 window 中,一切看起来都很好: Preview Window ,但是当我在我的 phone 上进行测试时,图像非常模糊,或者非常放大,我什至不知道如何描述它: Actual app。 我尝试了很多图片,也尝试了我在网上看到的大部分解决方案,但没有任何效果。我也是 android 的初学者,所以这可能是我看不到的非常简单的东西。 这是布局的 xml 代码:
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="15dp"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="15dp"
android:elevation="15dp"
android:orientation="horizontal"
>
<ImageView
android:layout_width="150dp"
android:layout_height="150dp"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/affenpinscher"
android:id="@+id/img_content"
/>
<TextView
android:id="@+id/txv_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"
android:layout_weight="100"
android:gravity="center"
android:padding="4dp"
android:textSize="14sp"
/>
<ImageButton
android:id="@+id/ibt_delete"
android:layout_width="30dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:textStyle="bold"
android:background="@android:color/transparent"
android:src="@android:drawable/ic_delete"
/>
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
也试过android:scaleType="centerCrop"或者只是"center",都是一样的。 图片为 220x330
图像模糊,因为其分辨率高于 imageView 当前尺寸所支持的分辨率。
所以你必须调整图像的大小。 转到 IDE 设置 -> 插件 -> 搜索“ Android Drawable Importer 并安装它 -> 重新启动 IDE 安装后,右键单击 drawable 文件夹,然后:New-> Batch Drawable Import -> select 您的图像并调整其大小。