A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

获取状态栏高度
  1. Rect frame = new Rect();  
  2. getWindow().getDecorView().getWindowVisibleDisplayFrame(frame);  
  3. int statusBarHeight = frame.top;
复制代码


获取actionBar的高宽度
有一个属性:
  1. android:layout_width="?attr/actionBarSize"
  2. android:layout_height="?attr/actionBarSize"
复制代码


获取屏幕高度,宽度
  1. DisplayMetrics dm = new DisplayMetrics();  
  2. this.getWindowManager().getDefaultDisplay().getMetrics(dm);//this指当前activity  
  3. screenWidth =dm.widthPixels;  
  4. screenHeight =dm.heightPixels;
复制代码


当然,开发完APP也是需要进行全方位的检测:http://www.ineice.com

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马