Disable EditText editability and focus (like TextView)

后端 未结 7 1330
说谎
说谎 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:21

    You can use your_edit_text.setKeyListener(null); simply to make it un-editable..

    0 讨论(0)
提交回复
热议问题