Disable EditText editability and focus (like TextView)

后端 未结 7 1382
说谎
说谎 2021-01-02 03:49

Is there a way to make EditText behaviors like TextView in Android (XML is prefered)? I have tried the following:

 android:editable         


        
7条回答
  •  心在旅途
    2021-01-02 04:11

    Disable EditText editability and focus (like TextView).

    Try this :

    android:longClickable="false"
    android:clickable="false"    
    android:cursorVisible="false"
    android:editable="false"
    

提交回复
热议问题