Can anyone tell me how to make an EditText not editable via XML? I tried setting android:editable to false, but
EditText
android:editable
false
This way did the job for me, i can selec and copy to clipboard, but i can't modify or paste.
android:enable="true" android:textIsSelectable="true" android:inputType="none"