user12465043
user12465043

Reputation:

What's the right size for an Image Asset?

I have a picture and want to use it as the app icon for my android app. I use the ImageAsset in Android Studio to create multiple icons for different phones, so I only need one picture.

My picture turned out too small (144px x 144px) and I cannot find information about the sizes on the developer pages.

Who can help me with this question?

Upvotes: 0

Views: 4703

Answers (5)

Prasang Darji
Prasang Darji

Reputation: 11

196 is a right side of android icon,create 196 icon side and create multiple images.

Upvotes: 0

Amit Desale
Amit Desale

Reputation: 1301

I would create separate images for each one:

LDPI should be 36 x 36.

MDPI should be 48 x 48.

TVDPI should be 64 x 64.

HDPI should be 72 x 72.

XHDPI should be 96 x 96.

XXHDPI should be 144 x 144.

XXXHDPI should be 192 x 192.

Then just put each of them in the separate stalks of the drawable folder.

You are also required to give a large version of your icon when uploading your app onto the Google Play Store and this should be WEB 512 x 512. This is so large so that Google can rescale it to any size in order to advertise your app throughout the Google Play Store and not add pixelation to your logo.

Basically, all of the other icons should be in proportion to the 'baseline' icon, MDPI at 48 x 48.

LDPI is MDPI x 0.75.

TVDPI is MDPI x 1.33.

HDPI is MDPI x 1.5.

XHDPI is MDPI x 2.

XXHDPI is MDPI x 3.

XXXHDPI is MDPI x 4.

This is all explained on the Iconography page of the Android Developers website: http://developer.android.com/design/style/iconography.html

Upvotes: 0

Tam Huynh
Tam Huynh

Reputation: 2487

1/ The suitable place to but app launcher icons is mipmap folder, not drawable like other images. According to this answer, images in the mipmap folder use different resolutions from the device’s current density.

My ic_launcher in mipmap-xxhdpi is also 144x144 but it still looks good on my device

enter image description here

2/ Check your source image when creating an app logo with Image Asset tools. Use a high-resolution image for better result. I used a 512x512 image

Upvotes: 0

Victory
Victory

Reputation: 1242

"512 x 512 pixel image [is] appropriate for the Google Play store"

To start Image Asset Studio, follow these steps:

  1. In the Project window, select the Android view.
  2. Right-click the res folder and select New > Image Asset.

enter image description here

  1. Continue by following the steps to:

for more detail

Upvotes: 4

LONGI
LONGI

Reputation: 11453

Use App Icon Creater from Android Studio. Go to File -> New -> Image Asset and select Launcher Icons

Upvotes: 0

Related Questions