擷取狀態列高度
一、傳統方式:有時擷取為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);