How to make EditText not editable through XML in Android?

后端 未结 27 1823
梦谈多话
梦谈多话 2020-11-28 17:35

Can anyone tell me how to make an EditText not editable via XML? I tried setting android:editable to false, but

  1. it is de
27条回答
  •  攒了一身酷
    2020-11-28 18:09

    I have faced same problem but after observation I found that android:editable="false" is only working when inputtype (android:inputType="ANY_VALUE") is not given in the Edittext.

    Remove inputType from EditText and use editable = false, its working fine.

提交回复
热议问题