获取屏幕的宽和高-Display中getHeight()和getWidth() 官方已废弃

getHeight()和getWidth() deprecated in API level 13

Display dp=getWindowManager().getDefaultDisplay();
int height=dp.getHeight(); 
int width=dp.getWidth(); 
  • 1
  • 2
  • 3
  • 1
  • 2
  • 3

官方文档

这里写图片描述

这里写图片描述

instead method

Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
int width = size.x;
int height = size.y;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 1
  • 2
  • 3
  • 4
  • 5

或者

DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
int height = metrics.heightPixels;
int width  = metrics.widthPixels;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 1
  • 2
  • 3
  • 4
  • 5




原文地址:https://www.cnblogs.com/jeffen/p/6726765.html