Android 自适应图标的正确图标大小

The correct icon size for Android Adaptive Icons

Android 自适应图标在 Android O 中 xxxhdpi 的图像尺寸是多少?您现在有一个前景层图像和一个背景层图像。

是简单地使用两张 192x192 像素的图像的解决方案吗?

来自official doc

Both layers must be sized at 108 x 108 dp.

自适应图标支持 SVG (VectorDrawable)。因此,您只需为前景层和背景层提供两个尺寸为 108 x 108 dp 的 SVG。

如果你想使用PNG图像,你必须计算其他密度的尺寸。

所以对于 xxxhdpi:108 * 4 => 432 x 432 像素。

您可以使用任何 dp/px calculator 来计算其他密度。

Android Studio 本身有一个生成器,可以帮助您创建所需的图标。

为此,请右键单击 res 文件夹 -> 新建 -> 图像资源。那就跟着精灵走吧。

https://developer.android.com/studio/write/image-asset-studio.html