Ver código fonte

Merge pull request #26353 from ivanarh/android_hide_keyboard_crash

Android: Fixed a possible crash in keyboard hide method.
Rémi Verschelde 6 anos atrás
pai
commit
351a2fa41c

+ 0 - 8
platform/android/java/src/org/godotengine/godot/GodotIO.java

@@ -516,14 +516,6 @@ public class GodotIO {
 	public void hideKeyboard() {
 		if (edit != null)
 			edit.hideKeyboard();
-
-		InputMethodManager inputMgr = (InputMethodManager)activity.getSystemService(Context.INPUT_METHOD_SERVICE);
-		View v = activity.getCurrentFocus();
-		if (v != null) {
-			inputMgr.hideSoftInputFromWindow(v.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
-		} else {
-			inputMgr.hideSoftInputFromWindow(new View(activity).getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
-		}
 	};
 
 	public void setScreenOrientation(int p_orientation) {