Make transparent android icons background in eclipse

How to make android icons with transparent background using eclipse.I know that we can create icons using eclipse-> new-> other-> android icon set, but how to make them with transparent background? Any help please.

+6
source share
3 answers

Eclipse is not an image editing program. If it has some basic functions built in for this, I would not recommend using it for design. If you have Photoshop or you can download GIMPs, use them instead to create icons.

Also, be sure to save them as PNG, not JPG, since JPG does not support transparency.

+6
source

If your icon is a transparent background, and you want to save it when creating a new icon using Android Eclipse, clicking "Shape None" will do the trick.

+6
source

Once you create your image, you can set a transparent background with

@android:color/transparent 
+3
source

Source: https://habr.com/ru/post/918476/


All Articles