user999274
user999274

Reputation:

How to find device is touch or nontouch.?

I want to make an application for both touch and non-touch device in blackberry. I don't know how to find the device is touch or not. Is there any idea.

Upvotes: 1

Views: 320

Answers (2)

Prof. Falken
Prof. Falken

Reputation: 24917

I found that for me, it was better to build the app to cope with both touch and nontouch phones. Remember that devices running firmware older than 4.7 can not load touch enabled apps.

Upvotes: 1

V.J.
V.J.

Reputation: 9590

Touchscreen.isSupported();

This is used to find whether the device is touch or non-touch. If the device is Touch then it returns

True

else it returns

False

Upvotes: 3

Related Questions