Java tutorial
//package com.java2s; //License from project: Open Source License import android.app.ActivityManager; import android.content.Context; public class Main { public static int getActivityIconSize(Context c) { return 2 * ((ActivityManager) c.getSystemService(Context.ACTIVITY_SERVICE)).getLauncherLargeIconSize(); } }