Java tutorial
//package com.java2s; import android.app.Activity; import android.graphics.Rect; public class Main { public static Rect getStatusBarInfo(Activity context) { Rect frame = new Rect(); context.getWindow().getDecorView().getWindowVisibleDisplayFrame(frame); return frame; } }