Set icon for Android application

2019-01-02 19:20发布

How can I set an icon for my Android application?

标签: android icons
16条回答
无与为乐者.
2楼-- · 2019-01-02 19:43
  1. Choose icon picture copy this pic
  2. Paste it into your project's res/drawable folder
  3. Open manifest file and set

  4. Run program

查看更多
忆尘夕之涩
3楼-- · 2019-01-02 19:44

If you have an SVG icon, you can use this script to generate your android icon set.

查看更多
骚的不知所云
4楼-- · 2019-01-02 19:48

Goto File->new->ImageAsset.

From their you can create Image Assets for your icon.

After that we will get icon image in mipmap different formats like hdpi,mdpi,xhdpi,xxhdpi,xxxhdpi.

Now goto AndroidManifest.xml

<application android:icon="@mipmap/your_Icon"> ....</application>
查看更多
梦寄多情
5楼-- · 2019-01-02 19:49

Right click your project, go to New > Other > Android > Android Icon Set

Then follow the instructions on the Wizard

查看更多
登录 后发表回答