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 combination worked for me:
android:longClickable="false" android:cursorVisible="false" android:focusableInTouchMode="false"