Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android 獲取狀態欄的高度

Android 獲取狀態欄的高度

編輯:關於Android編程

項目中用到了,網上找到一段代碼,能夠有效的獲取狀態欄的高度,記錄備忘。     [java]   /**       * 獲取狀態欄高度       *        * @return       */       public int getStatusBarHeight()       {           Class<?> c = null;           Object obj = null;           java.lang.reflect.Field field = null;           int x = 0;           int statusBarHeight = 0;           try           {               c = Class.forName("com.android.internal.R$dimen");               obj = c.newInstance();               field = c.getField("status_bar_height");               x = Integer.parseInt(field.get(obj).toString());               statusBarHeight = getResources().getDimensionPixelSize(x);               return statusBarHeight;           }           catch (Exception e)           {               e.printStackTrace();           }           return statusBarHeight;       }     /** * 獲取狀態欄高度 *  * @return */ public int getStatusBarHeight() { Class<?> c = null; Object obj = null; java.lang.reflect.Field field = null; int x = 0; int statusBarHeight = 0; try { c = Class.forName("com.android.internal.R$dimen"); obj = c.newInstance(); field = c.getField("status_bar_height"); x = Integer.parseInt(field.get(obj).toString()); statusBarHeight = getResources().getDimensionPixelSize(x); return statusBarHeight; } catch (Exception e) { e.printStackTrace(); } return statusBarHeight; }                  
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved