GKLBB

当你经历了暴风雨,你也就成为了暴风雨

导航

在线生成 APK 图标工具推荐

 

🥇 推荐工具

1. Android Asset Studio

text
网址: https://romannurik.github.io/AndroidAssetStudio/
  • ✅ Google 官方开发者制作
  • ✅ 直接生成所有尺寸 (mdpi/hdpi/xhdpi/xxhdpi/xxxhdpi)
  • ✅ 免费无需注册
  • ✅ 支持 Adaptive Icon

2. Icon Kitchen

text
网址: https://icon.kitchen
  • ✅ 最推荐,专为 Android/iOS 设计
  • ✅ 实时预览效果
  • ✅ 自动生成完整资源包
  • ✅ 支持文字/图片/表情生成图标

3. MakeAppIcon

text
网址: https://makeappicon.com
  • ✅ 上传一张图自动生成所有尺寸
  • ✅ 同时支持 Android + iOS

4. Canva(设计后导出)

text
网址: https://www.canva.com
  • ✅ 自定义设计能力强
  • ⚠️ 需要手动调整尺寸

📐 Android 图标尺寸规范

密度尺寸存放路径
mdpi 48×48 mipmap-mdpi
hdpi 72×72 mipmap-hdpi
xhdpi 96×96 mipmap-xhdpi
xxhdpi 144×144 mipmap-xxhdpi
xxxhdpi 192×192 mipmap-xxxhdpi
商店展示 512×512

🛠️ 生成后放入项目

text
app/src/main/res/
├── mipmap-mdpi/
│   ├── ic_launcher.png        ← 48x48
│   └── ic_launcher_round.png  ← 48x48
├── mipmap-hdpi/
│   ├── ic_launcher.png        ← 72x72
│   └── ic_launcher_round.png
├── mipmap-xhdpi/
│   ├── ic_launcher.png        ← 96x96
│   └── ic_launcher_round.png
├── mipmap-xxhdpi/
│   ├── ic_launcher.png        ← 144x144
│   └── ic_launcher_round.png
└── mipmap-xxxhdpi/
    ├── ic_launcher.png        ← 192x192
    └── ic_launcher_round.png

🚀 Android Studio 内置生成(最简单)

text
右键 res 目录
→ New
→ Image Asset
→ 选择图片
→ 自动生成所有尺寸 ✅

💡 推荐直接用 Icon Kitchen,上传图片一键下载 zip 包,解压替换 mipmap 文件夹即可

posted on 2026-04-12 21:40  GKLBB  阅读(45)  评论(0)    收藏  举报