Hide emoji popup when hiding soft keyboard.

This commit is contained in:
akwizgran
2018-08-28 16:45:04 +01:00
parent 271efdd2bc
commit d6c129e919

View File

@@ -163,6 +163,7 @@ public class TextInputView extends KeyboardAwareLinearLayout {
}
public void hideSoftKeyboard() {
if (emojiPopup.isShowing()) emojiPopup.dismiss();
IBinder token = editText.getWindowToken();
Object o = getContext().getSystemService(INPUT_METHOD_SERVICE);
((InputMethodManager) o).hideSoftInputFromWindow(token, 0);