Reputation: 2174
I am making an application in BlackBerry. Here i want to find the screen resolution in program. How to find that? Thanks in advance.
Upvotes: 0
Views: 991
Reputation: 20130
As I remember they are asking to avoid calling Display.getWidth()
and getHeight()
methods. And asking to use Screen.getWidth()
and getHeight()
where it's possible.
Upvotes: 1
Reputation: 4158
Try this code for getting the screen width and height -
Display.getWidth();
Display.getHeight();
Upvotes: 4