Quantcast
Channel: LocationManager – CoderzHeaven
Viewing all articles
Browse latest Browse all 3

How to check whether GPS is available in ANDROID or Not?

$
0
0

This code helps you to check whether the location service is available on your ANDROID Phone or not.
Copy this code and paste to your file.
Happy coding…..

 public boolean GPSAvailable() {
     LocationManager loc_manager = (LocationManager)
     getSystemService(Context.LOCATION_SERVICE);
     List<string> str = loc_manager.getProviders(true);

     if(str.size()>0)
         return true;
     else
         return false;
}

Viewing all articles
Browse latest Browse all 3

Trending Articles