Is there a way to make EditText behaviors like TextView in Android (XML is prefered)? I have tried the following:
EditText
TextView
android:editable
Disable EditText editability and focus (like TextView).
Try this :
android:longClickable="false" android:clickable="false" android:cursorVisible="false" android:editable="false"