Java tutorial
//package com.java2s; import android.app.Activity; import android.content.Context; import android.graphics.Rect; public class Main { public static int getStatusBarHeight(Context mContext) { Rect frame = new Rect(); ((Activity) mContext).getWindow().getDecorView().getWindowVisibleDisplayFrame(frame); return frame.top; } }