View 界面

安卓 View界面参数

View 界面_第1张图片

// 获取状态栏高度。不能在onCreate回调方法中获取

Rect frame = new Rect();

getWindow().getDecorView().getWindowVisibleDisplayFrame(frame);

int statusBarHeight = frame.top; 

//获取View布局区域到顶部的高度

int contentTop = getWindow().findViewById(Window.ID_ANDROID_CONTENT).getTop();

//导航栏高度

int actionbarHeight = contentTop - statusBarHeight;

View 界面_第2张图片

你可能感兴趣的:(View 界面)