IntegerOverflow
IntegerOverflow

Reputation: 68

Android Studio resizes app icon wrong

I'm trying to change the icon of my app in android studio.

I am importing it with Android Studio like this.

(which normally should work)

But on my mobile the App Icon looks like this.

I don't now what I'm doing wrong so any help is appreciated :)

Upvotes: 0

Views: 314

Answers (1)

EveryoneOver
EveryoneOver

Reputation: 44

With pngs it's kinda difficult. You may want to try using vectors:

First Export your logo (using for example photoshop) as a SVG

Then use this Website to convert it to xml code: http://inloop.github.io/svg2android/

Create a new drawable file and copy the code of the website into your file.

Then try creating your Launcher Icons using your drawable resource file

Upvotes: 1

Related Questions