In the layout you can set the EditText widget to be non-editable via the android:editable attribute.
How can I do this in code? I need to make the EditText widget to be editable depending on conditions.
|
feedback
|
|
I think an
| ||||
|
feedback
|
|
The best way to do this is with this single line of code:
The docs say for this method:
| |||||||||||
feedback
|
this ensure the | ||||
|
feedback
|
|
Have you tried setText(java.lang.CharSequence, android.widget.TextView.BufferType) ? It's described as:
(emphasis mine) | ||||
feedback
|
|
I do not see a related method for that attribute in the EditText
class. However, there are other similar things you could use such as
If your feeling ambitious you could probably do something with the EditText's | |||
|
feedback
|
|
[Posting a new answer, since I can't comment on Josef's answer.] The input filter works fine, but it has a subtle bug in it: typing over a selection will delete all the text. For example, say you have the text
The proposed input filter will return the empty string in this case (because The solution is to simply return | |||
|
feedback
|
|
I just tried this myself, To disable editing text:
this also sets setFocusableInTouchMode to false! To enable editing text:
this also sets setFocusable to true; | |||
|
feedback
|
|
I wanted to also point out an alternative solution that works nicely if you are creating new instances of an EditView. You can override the method getDefaultEditable() as suggested by the docs to return false. E.g.
| |||
|
feedback
|
|
I think the correct way to achieve the desired effect is:
If you want to switch between editable and non-editable you can do the following:
| |||||||||
feedback
|