前言
最近看代碼看到了 android.R.id.content
manager.beginTransaction()
.add(android.R.id.content, this, FilterFragment.class.getName())
.commitAllowingStateLoss();
android.R.id.content 是個什么布局攀痊,點進去看
一.android.R.id.content
android.R.id.content 提供了視圖的根元素艇棕,是一個FrameLayout咽瓷,只有一個子元素,就是平時在onCreate方法中設置的setContentView贸街。也即庵寞,當我們在Layout文件中設置一個布局文件時,實際上該布局被一個FrameLayout所包含薛匪。
需要注意的是捐川,在不同的SDK版本下,該FrameLayout所指的顯示區(qū)域也不同逸尖。具體如下
在sdk 14+(native ActionBar),該顯示區(qū)域指的是ActionBar下面的部分
在Support Library revision lower than 19古沥,使用AppCompat,則顯示區(qū)域包含ActionBar
在Support Library revision 19 (or greater)娇跟,使用AppCompat岩齿,則顯示區(qū)域不包含ActionBar,即行為與第一種情況相同苞俘。
所以如果不使用Support Library或使用Support Library的最新版本盹沈,則R.id.content所指的區(qū)域都是ActionBar以下
二.R.id.content 巧妙用途
1.獲取導航欄高度
android.R.id.content 一般不包含導航欄的高度,所以我們可以用它獲取導航欄的高度吃谣。
int contentTop = findViewById(android.R.id.content).getTop();
//statusBarHeight是上面所求的狀態(tài)欄的高度
int titleBarHeight = contentTop - statusBarHeight;
2.獲取鍵盤高度
1襟诸、鍵盤沒打開時獲取android.R.id.content的可見區(qū)域高度height1,
2基协、鍵盤打開時再獲取android.R.id.content的可見區(qū)域高度height2,
3菇用、鍵盤的高度height1-height2
private View globalView;
private int firstHeight;
private boolean isFirst = true;
globalView = findViewById(android.R.id.content);
globalView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
Rect rect = new Rect();
globalView.getWindowVisibleDisplayFrame(rect);
if (isFirst) {
isFirst = false;
firstHeight = rect.height();
} else {
int height = rect.height();
if (height < firstHeight) {
System.out.println("鍵盤打開 " + (firstHeight - height));
} else {
System.out.println("鍵盤關閉 ");
}
}
}
});
---------------------
3.那怎么獲取狀態(tài)欄的高度
getDecorView的getWindowVisibleDisplayFrame方法可以獲取程序顯示的區(qū)域澜驮,包括標題欄,但不包括狀態(tài)欄惋鸥,所以就可以通過距離top算出狀態(tài)欄的高度了杂穷。
Rect frame = new Rect();
getWindow().getDecorView().getWindowVisibleDisplayFrame(frame);
int statusBarHeight = frame.top;