Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> Android--獲取標題欄,狀態欄,屏幕高度,android--標題欄

Android--獲取標題欄,狀態欄,屏幕高度,android--標題欄

編輯:關於android開發

Android--獲取標題欄,狀態欄,屏幕高度,android--標題欄


獲取狀態欄高度

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

獲取actionBar的高寬度

有一個屬性:

android:layout_width="?attr/actionBarSize"
android:layout_height="?attr/actionBarSize"

獲取屏幕高度,寬度

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

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved