Android獲取狀態列高度

weixin_33762321發表於2018-12-26

android開發中,可以通過以下程式碼獲取android手機狀態列的高度

/**
     * 獲取狀態列高度
     * @param context
     * @return
     */
    public static int getStatusBarHeight(Context context) {
        Resources resources = context.getResources();
        int resourceId = resources.getIdentifier("status_bar_height", "dimen", "android");
        int height = resources.getDimensionPixelSize(resourceId);
        return height;
    }

相關文章