I have been facing an issue of the soft keyboard for Medium Phones, it simply shows up a menu and i would have to click in it so it pops up the keyboard option within other options too, i tried to hardcode it but couldn’t find what the issue is, see WebViews image
I have to say that it actually worked using this code for small phones, but the medium ones doesn’t work
editText.imeOptions = EditorInfo.IME_FLAG_NO_EXTRACT_UI or EditorInfo.IME_ACTION_NONE
editText.inputType = InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS or InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD
How to prevent it from being triggered as i select text field and instead make it automaticly trigger the soft keyboard?