From 361196beddd66935540bc745d9929ca4a3ba8db8 Mon Sep 17 00:00:00 2001 From: misaochan Date: Wed, 31 May 2017 19:36:25 +1000 Subject: [PATCH] Add onRequestPermissionsResult() --- .../free/nrw/commons/nearby/NearbyActivity.java | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/fr/free/nrw/commons/nearby/NearbyActivity.java b/app/src/main/java/fr/free/nrw/commons/nearby/NearbyActivity.java index 3aa6ae4c8..7bff04bf0 100644 --- a/app/src/main/java/fr/free/nrw/commons/nearby/NearbyActivity.java +++ b/app/src/main/java/fr/free/nrw/commons/nearby/NearbyActivity.java @@ -99,13 +99,27 @@ public class NearbyActivity extends NavigationBaseActivity { private void checkLocationPermission() { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED) { - //Request permission and display notification that Nearby places cannot be shown without permission ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, LOCATION_REQUEST); } } } + @Override + public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) { + switch (requestCode) { + case LOCATION_REQUEST: { + if (grantResults.length > 0 && grantResults[0] != PackageManager.PERMISSION_GRANTED) { + //If permission not granted, display notification that Nearby Places cannot be displayed + int duration = Toast.LENGTH_LONG; + Toast toast = Toast.makeText(this, "Nearby places cannot be found without location permissions", duration); + toast.show(); + } + } + } + } + + protected void checkGps() { LocationManager manager = (LocationManager) getSystemService(LOCATION_SERVICE); if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {