Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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;
    }
}