Java tutorial
//package com.java2s; /* * Copyright (C) 2014 Jorge Ruesga * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import android.app.Activity; import android.content.Context; import android.provider.Settings; public class Main { /** * Calculate the dimension of the status bar * * @param context The current context * @return The height of the status bar */ public static int calculateStatusBarHeight(Context context) { // CyanogenMod specific featured (DO NOT RELAY IN INTERNAL VARS) boolean hiddenStatusBar = Settings.System.getInt(context.getContentResolver(), "expanded_desktop_state", 0) == 1 && Settings.System.getInt(context.getContentResolver(), "expanded_desktop_style", 0) == 2; int result = 0; // On kitkat we can use the translucent bars to fill all the screen if (!isKitKat() && !hiddenStatusBar && !(context instanceof Activity)) { int resourceId = context.getResources().getIdentifier("status_bar_height", "dimen", "android"); if (resourceId > 0) { result = context.getResources().getDimensionPixelSize(resourceId); } } return result; } /** * Method that returns if the device is running kitkat or greater * * @return boolean true if is running kitkat or greater */ public static final boolean isKitKat() { return android.os.Build.VERSION.SDK_INT >= 19; } }