Java tutorial
//package com.java2s; import android.app.Activity; import android.graphics.Rect; public class Main { public static int getNotifyBarHeight(Activity context) { Rect frame; try { frame = new Rect(); context.getWindow().getDecorView().getWindowVisibleDisplayFrame(frame); return frame.top; } catch (Exception e) { e.printStackTrace(); } return 0; } }