From ad93fde38684eed70b633b2086b3a9170fd36bd9 Mon Sep 17 00:00:00 2001 From: Chumva Date: Fri, 30 Mar 2018 17:42:29 +0300 Subject: [PATCH] deleted unnecessary method --- .../CoordinateInputDialogFragment.java | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/OsmAnd/src/net/osmand/plus/mapmarkers/CoordinateInputDialogFragment.java b/OsmAnd/src/net/osmand/plus/mapmarkers/CoordinateInputDialogFragment.java index bea7d40be9..590021418f 100644 --- a/OsmAnd/src/net/osmand/plus/mapmarkers/CoordinateInputDialogFragment.java +++ b/OsmAnd/src/net/osmand/plus/mapmarkers/CoordinateInputDialogFragment.java @@ -807,26 +807,6 @@ public class CoordinateInputDialogFragment extends DialogFragment implements Osm changeEditTextSelections(); } - private void changeSoftKeyboardVisibility() { - changeOsmandKeyboardSetting(); - boolean useOsmandKeyboard = isOsmandKeyboardOn(); - changeOsmandKeyboardVisibility(useOsmandKeyboard); - final View focusedView = getDialog().getCurrentFocus(); - if (focusedView != null) { - if (useOsmandKeyboard) { - AndroidUtils.hideSoftKeyboard(getActivity(), focusedView); - } else { - new Handler().postDelayed(new Runnable() { - @Override - public void run() { - AndroidUtils.showSoftKeyboard(focusedView); - } - }, 200); - } - } - changeEditTextSelections(); - } - private CoordinateInputFormatChangeListener createCoordinateInputFormatChangeListener() { return new CoordinateInputFormatChangeListener() {