Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have an app that creates shortcuts. it generates the shortcut icon dynamically, so i need to know the correct launcher icon size.

to handle this, i created dimens.xml in values-ldpi/mdpi/hdpi/xhdpi/xxhdpi and defined my icon size to be 36/48/72/96/144px respectively.

this scheme works, except on 10", xhdpi tablets (like the nexus 10). it appears these tablets use a launcher icon size of 144px (xxhdpi) despite have an xhdpi screen.

is there a way to correctly detect the launcher icon size that takes into account 10" xhdpi tablets? or is there a better scheme for getting my icons sized correctly? or perhaps is there a way to differentiate this case from the simple xhdpi case?

thanks.

share|improve this question
"it appears these tablets use a launcher icon size of 144px (xxhdpi) despite have an xhdpi screen" -- yes, Google mentioned this, albeit through non-official channels: plus.google.com/118292708268361843293/posts/ePQya3KsTjW Perhaps getLauncherLargeIconDensity() on ActivityManager will help you, as Nick mentioned in his G+ post. – CommonsWare Jan 25 at 0:02
If you're interested, have a look at stackoverflow.com/questions/13215587/android-xxhdpi-resources for a run-down of why the Nexus 10 uses XXHDPI resources. – Eric Jan 25 at 0:06
@CommonsWare please post this as an answer (getLauncherLargeIconDensity()), that worked. – Jeffrey Blattman Jan 25 at 0:30
Actually, since I didn't fully understand your problem, let alone precisely if and how getLauncherLargeIconDensity() would help, I'd recommend that you answer your own question in this case. It'll be more useful to others who run across this question. – CommonsWare Jan 25 at 0:35

1 Answer

up vote 1 down vote accepted

answering my own questions.

to get the launcher icon size used on the device, simply call ActivityManager.getLauncherLargeIconSize() as suggested by CommonsWare above. one slight hiccup is that this is only available on API 11+. in that case, i fall back to using DisplayMetrics. this would of course fail if there was a 10" XHDPI device that ran android 2, which is extremely unlikely. here's the utility method i wrote,

@SuppressLint("NewApi")
private int getLauncherIconSize() {
    int size = 48;

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
        ActivityManager mgr = (ActivityManager) activity.getSystemService(Context.ACTIVITY_SERVICE);
        size = mgr.getLauncherLargeIconSize();
    } else {
        DisplayMetrics metrics = new DisplayMetrics();
        activity.getWindowManager().getDefaultDisplay().getMetrics(metrics);
        switch (metrics.densityDpi) {
        case DisplayMetrics.DENSITY_LOW:
            size = 36;
            break;
        case DisplayMetrics.DENSITY_MEDIUM:
            size = 48;
            break;
        case DisplayMetrics.DENSITY_HIGH:
            size = 72;
            break;
        case DisplayMetrics.DENSITY_XHIGH:
            size = 96;
            break;
        case DisplayMetrics.DENSITY_XXHIGH:
            size = 144;
            break;
        }
    }

    return size;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.