Guest User

Untitled

a guest
Jan 22nd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. LocationManager locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);
  2. {
  3. if(!locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER ))
  4. {
  5. Intent myIntent = new Intent( Settings.ACTION_LOCATION_SOURCE_SETTINGS );
  6. startActivity(myIntent);
  7. }
  8. }
Add Comment
Please, Sign In to add comment