Get the screens pixel dimensions

suggest change

To retreive the screens width and height in pixels, we can make use of the WindowManagers display metrics.

// Get display metrics
DisplayMetrics metrics = new DisplayMetrics();
context.getWindowManager().getDefaultDisplay().getMetrics(metrics);

These DisplayMetrics hold a series of information about the devices screen, like its density or size:

// Get width and height in pixel
Integer heightPixels = metrics.heightPixels;
Integer widthPixels = metrics.widthPixels;

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Device Display Metrics:
*Get the screens pixel dimensions

Table Of Contents
107Device Display Metrics
169XMPP
230AIDL
242Okio