Java tutorial
//package com.java2s; import android.content.res.Resources; public class Main { private static int barHeight = 0; public static int getBarHeight(Resources res) { if (barHeight == 0) { int resourceId = res.getIdentifier("status_bar_height", "dimen", "android"); if (resourceId > 0) { barHeight = res.getDimensionPixelSize(resourceId); } } return barHeight; } }