Android開發之有效擷取狀態列(StatusBar)高度

來源:互聯網
上載者:User

擷取狀態列高度


一、傳統方式:有時擷取為0,解決方案看  二

 
 代碼
Rect frame = new Rect();  
getWindow().getDecorView().getWindowVisibleDisplayFrame(frame);  
int statusBarHeight = frame.top;  
 

二、4.0.3之後可能擷取為0

 public int getBarHeight(){
        Class<?> c = null;
        Object obj = null;
        Field field = null;
        int x = 0, sbar = 38;//預設為38,貌似大部分是這樣的

        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());
            sbar = getResources().getDimensionPixelSize(x);

        } catch (Exception e1) {
            e1.printStackTrace();
        }
        return sbar;
    }

 

//---------------------------------------------

 


1.擷取狀態列高度:

decorView是window中的最頂層view,可以從window中擷取到decorView,然後decorView有個getWindowVisibleDisplayFrame方法可以擷取到程式顯示的地區,包括標題列,但不包括狀態列。

於是,我們就可以算出狀態列的高度了。

 
 代碼
Rect frame = new Rect();  
getWindow().getDecorView().getWindowVisibleDisplayFrame(frame);  
int statusBarHeight = frame.top; 
 

--------------------------------------------------------------------------------

有時候擷取到的高度是0,可以用另一種方法擷取

在源碼程式中擷取狀態列高度代碼:

height= getResources().getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);

 
6 代碼
class c = Class.forName("com.android.internal.R$dimen");
Object obj = c.newInstance();
Field field = c.getField("status_bar_height");
int x = Integer.parseInt(field.get(obj).toString());
int y = getResources().getDimensionPixelSize(x);
 

2.擷取標題列高度:

getWindow().findViewById(Window.ID_ANDROID_CONTENT)這個方法擷取到的view就是程式不包括標題列的部分,然後就可以知道標題列的高度了。

 
 代碼
int contentTop = getWindow().findViewById(Window.ID_ANDROID_CONTENT).getTop();  
//statusBarHeight是上面所求的狀態列的高度  
int titleBarHeight = contentTop - statusBarHeight 

 

3.擷取螢幕高度

方法 1.

Java代碼

 
 代碼
WindowManager windowManager = getWindowManager();  
Display display = windowManager.getDefaultDisplay();  
screenWidth = display.getWidth();  
screenHeight = display.getHeight(); 
 

方法 2.

 
 Java代碼 
DisplayMetrics dm = new DisplayMetrics();  
this.getWindowManager().getDefaultDisplay().getMetrics(dm);//this指當前activity  
screenWidth =dm.widthPixels;  
screenHeight =dm.heightPixels; 
 

以上兩種方法在螢幕未顯示的時候,還是處於0的狀態,即要在setContentView調用之後才有效。

設定為無標題

 

requestWindowFeature(Window.FEATURE_NO_TITLE);

設定為全螢幕模式getWindow().setFlags

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);

設定為橫屏

setRequesteOrientation(ActivityInfo.SCREEN_ORIENTATION_LADSCAPE);

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.