Android program realizes the method of obtaining the true width and height of mobile phone screen

  • 2020-09-28 09:09:34
  • OfStack

An example of Android programming is presented to obtain the true width and height of mobile phone screen. To share for your reference, the details are as follows:


WindowManager w = activity.getWindowManager();
Display d = w.getDefaultDisplay();
DisplayMetrics metrics = new DisplayMetrics();
d.getMetrics(metrics);
// since SDK_INT = 1;
widthPixels = metrics.widthPixels;
heightPixels = metrics.heightPixels;
try {
  // used when 17 > SDK_INT >= 14; includes window decorations (statusbar bar/menu bar)
  widthPixels = (Integer) Display.class.getMethod("getRawWidth").invoke(d);
  heightPixels = (Integer) Display.class.getMethod("getRawHeight").invoke(d);
} catch (Exception ignored) {
}
try {
  // used when SDK_INT >= 17; includes window decorations (statusbar bar/menu bar)
  Point realSize = new Point();
  Display.class.getMethod("getRealSize", Point.class).invoke(d, realSize);
  widthPixels = realSize.x;
  heightPixels = realSize.y;
} catch (Exception ignored) {
}

Fixes: Improved version (fixes some exceptions in the original unsupported version 1):


WindowManager w = activity.getWindowManager();
Display d = w.getDefaultDisplay();
DisplayMetrics metrics = new DisplayMetrics();
d.getMetrics(metrics);
// since SDK_INT = 1;
widthPixels = metrics.widthPixels;
heightPixels = metrics.heightPixels;
// includes window decorations (statusbar bar/menu bar)
if (Build.VERSION.SDK_INT >= 14 && Build.VERSION.SDK_INT < 17)
try {
  widthPixels = (Integer) Display.class.getMethod("getRawWidth").invoke(d);
  heightPixels = (Integer) Display.class.getMethod("getRawHeight").invoke(d);
} catch (Exception ignored) {
}
// includes window decorations (statusbar bar/menu bar)
if (Build.VERSION.SDK_INT >= 17)
try {
  Point realSize = new Point();
  Display.class.getMethod("getRealSize", Point.class).invoke(d, realSize);
  widthPixels = realSize.x;
  heightPixels = realSize.y;
} catch (Exception ignored) {
}

I hope this article has been helpful in Android programming.


Related articles: