• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Help Icon Shorcut Get Blur When Load To Android Studio

Hello , I want to ask Why my icon get blur when i load to android studio
upload_2018-12-11_1-57-20.png

its before i load image to android studio
upload_2018-12-11_1-57-50.png


Here After i Load to Android studio
 
It does not matter that the launcher icon is blurred in android studio. What matters is that it's not blurred when installed on the phone...

Launcher icons should be placed in multiple mipmap folders for different screen sizes as below:
https://developer.android.com/training/multiscreen/screendensities#TaskProvideAltBmp
Code:
res/
  mipmap-xxxhdpi/
   launcher-icon.png
  mipmap-xxhdpi/
   launcher-icon.png
  mipmap-xhdpi/
   launcher-icon.png
  mipmap-hdpi/
   launcher-icon.png
  mipmap-mdpi/
   launcher-icon.png

And your launcher icon sizes should be as follows:
Code:
36 x 36 (ldpi)
48 × 48 (mdpi)
72 × 72 (hdpi)
96 × 96 (xhdpi)
144 × 144 (xxhdpi)
192 × 192 (xxxhdpi)
You can also use one vector(svg) icon for all screen sizes since vectors scale up/down to any screen size. The first link I provided cover vectors also.
 
Last edited:
Upvote 0

BEST TECH IN 2023

We've been tracking upcoming products and ranking the best tech since 2007. Thanks for trusting our opinion: we get rewarded through affiliate links that earn us a commission and we invite you to learn more about us.

Smartphones