Quantcast
Channel: silveira neto » Java
Viewing all articles
Browse latest Browse all 11

Android screen height and width

$
0
0
Context ctx = getContext();
Display display = ((WindowManager)ctx.getSystemService(ctx.WINDOW_SERVICE)).getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();

Yes, there are easier ways to retrieve the screen width on Android but there are cases that this long code is the only solution. You may already have the Context. WindowManager or the Display and so it would be smaller, but this code is more general.


Viewing all articles
Browse latest Browse all 11

Trending Articles