20

My apk icon goes blurry when creating the apk. I tried even to download some apk that has a very sharp (android app) icon and placing it inside of my apk but I get the same result.

how is it possible that my icon goes blurry when I see it very sharp in other app using the same icon?

of course I used multiple icon size: ldpi (120 dpi) (Low density screen) 36 x 36 px mdpi (160dpi)(Medium density screen) 48 x 48 px hdpi (240 dpi)(Highdensity screen) 72 x 72 px xhdpi (320 dpi) (Extra-high density screen) 96 x 96 px

but it didn't help. how can I fix it?

Thank you

4

6 回答 6

5

聚会有点晚了,但是如果有人搜索此问题,您可能需要检查您的图标是否在/drawable或中/mipmap。如果您以前没有启动器图标,后者确实会提高质量。

也可以看看:

于 2016-02-01T11:29:30.893 回答
3

正如所有答案都建议请检查所有可绘制和 mipmap 文件夹,但在我的情况下,我还有一个额外的文件夹mipmap-anydpi-v26,其中我还有应用程序图标,该图标正在创建问题。所以我只是简单地删除 mipmap-anydpi-v26 文件夹,之后一切正常。

于 2018-03-17T10:13:42.623 回答
2

我发现了我的错误。我应该知道 android:thumbnail 不是 android:icon,缩略图分辨率应该更高(我找不到文档),

于 2013-04-29T08:29:14.200 回答
2

它可能模糊的另一个原因:

如果您在可绘制对象中使用 xml 图标,请检查值android:widthandroid:height,确保它们足够大(例如:'128dp')。

于 2018-03-30T08:19:08.080 回答
1

如果在从 android studio 编译和运行时图像模糊,请确保如果找到mipmap-anydp文件夹,请删除它!

于 2020-07-28T00:17:18.543 回答
1

对我有用的是在 config.xml 图标标签中使用“密度”而不是“限定符”:

<icon density="ldpi" src="www/res/icons/android/drawable-ldpi-icon.png" />
于 2019-06-08T19:13:16.583 回答