Disable EditText editability and focus (like TextView)

后端 未结 7 1366
说谎
说谎 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..

提交回复
热议问题