09-05-2008 03:26 AM
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?
Solved! Go to Solution.
09-05-2008 03:50 AM
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
09-05-2008 05:26 AM
solved !!!
i simply used static method RadioInfo.isDataServiceOperational() to chk the service...