From d9671ad0ccf960bcdbe1a2f741fa1b4e522de573 Mon Sep 17 00:00:00 2001 From: Roman Tsisyk Date: Sat, 12 Feb 2022 11:14:57 +0300 Subject: [PATCH] [android] Refactor system location settings invocation - Add application settings as one more option - Remove "Connection settings" buttons if no dialogs are available - Move intent creation code to Utils Signed-off-by: Roman Tsisyk --- .../src/com/mapswithme/maps/MwmActivity.java | 50 ++++++------------- .../src/com/mapswithme/util/InputUtils.java | 4 +- android/src/com/mapswithme/util/Utils.java | 18 ++++++- 3 files changed, 35 insertions(+), 37 deletions(-) diff --git a/android/src/com/mapswithme/maps/MwmActivity.java b/android/src/com/mapswithme/maps/MwmActivity.java index 92d1800d29..98841b3606 100644 --- a/android/src/com/mapswithme/maps/MwmActivity.java +++ b/android/src/com/mapswithme/maps/MwmActivity.java @@ -1850,23 +1850,23 @@ public class MwmActivity extends BaseMwmFragmentActivity @Override public void onLocationError() { - if (mLocationErrorDialogAnnoying) + if (mLocationErrorDialogAnnoying || (mLocationErrorDialog != null && mLocationErrorDialog.isShowing())) return; - Intent intent = makeAppSettingsLocationIntent(); - if (intent == null) - return; - showLocationErrorDialog(intent); - } - - private Intent makeAppSettingsLocationIntent() - { - Intent intent = new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS); - if (intent.resolveActivity(getPackageManager()) != null) - return intent; - - intent = new Intent(android.provider.Settings.ACTION_SECURITY_SETTINGS); - return intent.resolveActivity(getPackageManager()) == null ? null : intent; + AlertDialog.Builder builder = new AlertDialog.Builder(this) + .setTitle(R.string.enable_location_services) + .setMessage(R.string.location_is_disabled_long_text) + .setOnCancelListener(dialog -> mLocationErrorDialogAnnoying = true) + .setNegativeButton(R.string.close, (dialog, which) -> mLocationErrorDialogAnnoying = true); + final Intent intent = Utils.makeSystemLocationSettingIntent(this); + if (intent != null) + { + intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); + intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY); + intent.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS); + builder.setPositiveButton(R.string.connection_settings, (dialog, which) -> startActivity(intent)); + } + mLocationErrorDialog = builder.show(); } @Override @@ -1894,26 +1894,6 @@ public class MwmActivity extends BaseMwmFragmentActivity } } - private void showLocationErrorDialog(@NonNull final Intent intent) - { - if (mLocationErrorDialog != null && mLocationErrorDialog.isShowing()) - return; - - mLocationErrorDialog = new AlertDialog.Builder(this) - .setTitle(R.string.enable_location_services) - .setMessage(R.string.location_is_disabled_long_text) - .setNegativeButton(R.string.close, new DialogInterface.OnClickListener() - { - @Override - public void onClick(DialogInterface dialog, int which) - { - mLocationErrorDialogAnnoying = true; - } - }) - .setOnCancelListener(dialog -> mLocationErrorDialogAnnoying = true) - .setPositiveButton(R.string.connection_settings, (dialog, which) -> startActivity(intent)).show(); - } - @Override public void onLocationNotFound() { diff --git a/android/src/com/mapswithme/util/InputUtils.java b/android/src/com/mapswithme/util/InputUtils.java index 8e127b7451..3124c11ef1 100644 --- a/android/src/com/mapswithme/util/InputUtils.java +++ b/android/src/com/mapswithme/util/InputUtils.java @@ -7,6 +7,8 @@ import android.view.View; import android.view.inputmethod.InputMethodManager; import android.widget.EditText; +import androidx.annotation.NonNull; + import com.mapswithme.util.concurrency.UiThread; import java.util.ArrayList; @@ -17,7 +19,7 @@ public class InputUtils private InputUtils() { /* static class */ } - public static boolean isVoiceInputSupported(Context context) + public static boolean isVoiceInputSupported(@NonNull Context context) { if (mVoiceInputSupported == null) mVoiceInputSupported = Utils.isIntentSupported(context, new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH)); diff --git a/android/src/com/mapswithme/util/Utils.java b/android/src/com/mapswithme/util/Utils.java index dc9aca68aa..3f98197400 100644 --- a/android/src/com/mapswithme/util/Utils.java +++ b/android/src/com/mapswithme/util/Utils.java @@ -147,11 +147,27 @@ public class Utils showSnackbarAbove(view, viewAbove, message); } - public static boolean isIntentSupported(Context context, Intent intent) + public static boolean isIntentSupported(@NonNull Context context, @NonNull Intent intent) { return context.getPackageManager().resolveActivity(intent, 0) != null; } + public static @Nullable Intent makeSystemLocationSettingIntent(@NonNull Context context) + { + Intent intent = new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS); + if (isIntentSupported(context, intent)) + return intent; + intent = new Intent(android.provider.Settings.ACTION_SECURITY_SETTINGS); + if (isIntentSupported(context, intent)) + return intent; + intent = new Intent(android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS); + Uri uri = Uri.fromParts("package", context.getPackageName(), null); + intent.setData(uri); + if (isIntentSupported(context, intent)) + return intent; + return null; + } + public static void checkNotNull(Object object) { if (null == object) throw new NullPointerException("Argument here must not be NULL");