Reputation: 4774
I know all the other measures but I cant find where to see this last measure, any link or information would be appreciated...
Upvotes: 2
Views: 17168
Reputation: 1226
Lets consider mdpi as a baseline then icon size will be
Hope it will help you
Upvotes: 7
Reputation: 8395
Four times baseline of 48x48. That is 192x192 pixels.
http://developer.android.com/design/style/iconography.html
Upvotes: 2
Reputation: 18243
XXXHDPI has a ratio of 4 compared to the baseline (mdpi).
Baseline being 48x48 pixels, XXHXDPI would be 192x192 pixels.
Upvotes: 0
Reputation: 3972
Based on Google Documentation:
xxxhdpi (extra-extra-extra-high) ~640dpi
You can see
http://developer.android.com/guide/practices/screens_support.html
Upvotes: 0
Reputation: 12541
Check Android documentation for size in dp:
Launcher icons on a mobile device must be 48x48 dp.
Launcher icons for display on Google Play must be 512x512 pixels.
Then lookup the conversion table in material design spec for size in pixel: http://www.google.com/design/spec/layout/units-measurements.html#units-measurements-image-scaling
Upvotes: 0
Reputation: 87
JellyBean Doesn't Support drawable-xxhdpi
for the xxhdpi qualifier, you will need to create an icon of the size 144*144px for your launcher icon. You can either place it in the drawable-xxhdpi or the drawable-480dpi
Upvotes: 4