I have three EditText boxes in an activity, for two of which normal input methods (hard keys, default soft keyboard) are ok. But for one of the EditText boxes I want to send sof
Simple
editText.setShowSoftInputOnFocus(false);
Some people suggested that the following might work on older versions of Android, but the behaviour is unexpected.
edittextPlay.setTextIsSelectable(true);