标签:android ar sp 文件 new window 方法 view ie
获取android屏幕上状态栏的高度方法网上很多这里不再敖述,只举一个例子
Rect rect = new Rect();
getWindow().getDecorView().getWindowVisibleDisplayFrame(rect);
rect.top便是状态栏的高度。
但是在响应的布局文件中,如果最外层的layout或者View 长宽设置为fill_parent时,上面的rect.top就为0了。
标签:android ar sp 文件 new window 方法 view ie
原文地址:http://www.cnblogs.com/Haijunzhu/p/4033601.html