My activity has an EditText which is supposedly not editable until user clicks on edit button for the screen.
EditText
I did edit.setEnabled(false)
edit.setEnabled(false)
To make EditText Write Only and not have the keyboard show up I use these two commends within the .xml layout file.
android:editable="false" android:inputType="none"