Rebuild or regenerate 'ic_launcher.png' from images in Android Studio

前端 未结 15 866
清歌不尽
清歌不尽 2020-12-22 21:03

When one first creates a new project, that dialog lets you point to some external .PNG file, and then when that dialog completes, it generates 4 different pixel-sizes of ima

15条回答
  •  失恋的感觉
    2020-12-22 21:35

    Put the desired launcher image (.png) in drawable folder.

    In AndroidManifest.xml, add

    android:icon="@drawable/your_img_name"
    

    under application tag.

提交回复
热议问题