简体   繁体   中英

How to make an icon for Android Activity?

I can't find anywhere how to get my icon into my activity. I followed the guidelines to make all the different resolutions, now what?

Make icons of the appropriate dimensions and place in these locations

72 x 72px png in res/drawable-hdpi
48 x 48px png in res/drawable-mdpi
36 x 36px png in res/drawable-ldpi

Make sure they all have the same name, in the example below all would be called ic_logo.png.

Now edit AndroidManifest.xml to point to your icon.
<application android:icon="@drawable/ic_logo" android:label="@string/app_name" android:theme="@android:style/Theme.Holo">

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM