Dany
Dany

Reputation: 2174

how to get screen resolution in blackberry?

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

Answers (2)

Eugen Martynov
Eugen Martynov

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

Rince Thomas
Rince Thomas

Reputation: 4158

Try this code for getting the screen width and height -

Display.getWidth();
Display.getHeight();

Upvotes: 4

Related Questions