Android Soft Keyboard Appears on EditText Longpress

I hide my default Android keyboard (InputType.TYPE_NULL) and set

<android:windowSoftInputMode="stateAlwaysHidden|adjustPan" > 

in the manifest file. It works great onToch, onClick, onFocus, but when I long click on EditText, and as soon as I release it, Soft Keyboard will appear. What is the reason for his appearance in LongClick? Any decision of his?

+4
source share

Source: https://habr.com/ru/post/1610887/


All Articles