Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Java Development

Reply
Developer
02cp682
Posts: 80
Registered: ‎08-26-2008
Accepted Solution

Isn't it Strange???

hi friends,

 

look at my following code

i m using this code to check whether internet connection is present or not ( i do this checking before showing mail compose window )

 

int status = RadioInfo.getState(); if ( status == RadioInfo.STATE_OFF || status == RadioInfo.STATE_SERVICE_REQUIRED || status == RadioInfo.STATE_TURNING_OFF || status == RadioInfo.NETWORK_NONE ) return false; else return true;

 

here, i got 'true' if i run it on emmulator....

it it so or should i look for any configurations on emmulator?

 

 

Jeet Bhatt, India
Please use plain text.
Developer
anildeveloper
Posts: 33
Registered: ‎07-16-2008

Re: Isn't it Strange???

if you mean with "emmulator" the simulator, then you could try this in the simulator:

 

Simulate ->  Network Properties -> now deactivate "In Coverage" -> Close

 

now your method should return false and you will understand the correlation.

 

Regards Anil

Please use plain text.
Developer
02cp682
Posts: 80
Registered: ‎08-26-2008

Re: Isn't it Strange???

 solved !!!

 

i simply used static method RadioInfo.isDataServiceOperational() to chk the service...

 

 

 

 

Jeet Bhatt, India
Please use plain text.