Created
April 3, 2019 07:39
-
-
Save walteranyika/4aaa4c6a2217571b17c2315fee5ba101 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//bit.ly/2WIKPgz | |
double latitude = 0.0; | |
double longitude = 0.0; | |
private FusedLocationProviderClient fusedLocationClient; | |
// fusedLocationClient = LocationServices.getFusedLocationProviderClient(this); | |
public void fetchGPS() { | |
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) { | |
return; | |
} | |
fusedLocationClient.getLastLocation() | |
.addOnSuccessListener(this, new OnSuccessListener<Location>() { | |
@Override | |
public void onSuccess(Location location) { | |
// Got last known location. In some rare situations this can be null. | |
if (location != null) { | |
// Logic to handle location object | |
double lat = location.getLatitude(); | |
double lon = location.getLongitude(); | |
txtLati.setText(lat + ""); | |
txtLongi.setText(lon + ""); | |
latitude = lat; | |
longitude = lon; | |
} | |
} | |
}); | |
} | |
static final int PERMISSIONS_REQUEST_ACCESS_FINE_LOCATION = 2000; | |
boolean mLocationPermissionGranted = false; | |
private void getLocationPermission() { | |
if (ContextCompat.checkSelfPermission(this, | |
android.Manifest.permission.ACCESS_FINE_LOCATION) | |
== PackageManager.PERMISSION_GRANTED) { | |
mLocationPermissionGranted = true; | |
} else { | |
ActivityCompat.requestPermissions(this, | |
new String[]{android.Manifest.permission.ACCESS_FINE_LOCATION}, | |
PERMISSIONS_REQUEST_ACCESS_FINE_LOCATION); | |
} | |
} | |
@Override | |
public void onRequestPermissionsResult(int requestCode, @NonNull String permissions[], @NonNull int[] grantResults) { | |
mLocationPermissionGranted = false; | |
switch (requestCode) { | |
case PERMISSIONS_REQUEST_ACCESS_FINE_LOCATION: { | |
// If request is cancelled, the result arrays are empty. | |
if (grantResults.length > 0 | |
&& grantResults[0] == PackageManager.PERMISSION_GRANTED) { | |
mLocationPermissionGranted = true; | |
//getDeviceLocation(); | |
fetchGPS(); | |
} | |
} | |
} | |
// updateLocationUI(); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment