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.

link|improve this question

feedback

9 Answers

up vote 5 down vote accepted

I think an InputFilter that rejects all changes is a good solution:

editText.setFilters(new InputFilter[] {
    new InputFilter() {
    	public CharSequence filter(CharSequence src, int start,
    		int end, Spanned dst, int dstart, int dend) {
    		return src.length() < 1 ? dst.subSequence(dstart, dend) : "";
    	}
    }
});
link|improve this answer
feedback

The best way to do this is with this single line of code:

textView.setKeyListener(null);

The docs say for this method:

Sets the key listener to be used with this TextView. This can be null to disallow user input.

link|improve this answer
This may work, but what if you need to switch between editable and non-editable due to some criteria? You'd have to create your own KeyListener in order to set it back to editable, which feels wrong. – John Jun 15 '11 at 14:12
Has other side effects, like killing selection for copy, too. – James Moore Jul 2 '11 at 0:55
What Christopher suggested should work. It allows you to select and copy text from the field just the same as if you had defined the field not editable from the xml (I don't know what James is talking about, but it works fine at least on Android 2.2.). Looking at the source code that's pretty much what is done when the xml attribute enabled is set to false for any TextView. As per the documentation you may need to call setFocusable(true) after calling setKeyListener(null). – Timo Lehto Dec 10 '11 at 23:14
1  
@John You can call getKeyListener() first and stash it for later use can't you (if it was previously set)? Or perhaps map the getInputType to some key listener manually. Or just force some known good key listener. E.g. you should be able to set (didn't test it) the default TextKeyListener with this: textView.setKeyListener(TextKeyListener.getInstance()); – Timo Lehto Dec 10 '11 at 23:20
feedback
editText.setFocusable(false);
editText.setClickable(false);

this ensure the EditText control can't be selected and focused, so it can't be edited.

link|improve this answer
But it also can't be selected and copied. – James Moore Jul 2 '11 at 0:54
feedback

Have you tried setText(java.lang.CharSequence, android.widget.TextView.BufferType) ? It's described as:

Sets the text that this TextView is to display (see setText(CharSequence)) and also sets whether it is stored in a styleable/spannable buffer and whether it is editable.

(emphasis mine)

link|improve this answer
Thanks for the effort, but I just tried and it makes no difference whatsoever. Furthermore, there isn't any documentation on what the enum values even mean. – AngryHacker Mar 20 '09 at 0:59
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 android:focus/setFocusable(boolean) or create another TextView whose android:editable="false" and use setVisiblilty() to switch between the editable and not editable views. If you use View.GONE the user will never know there are two EditTexts.

If your feeling ambitious you could probably do something with the EditText's onTextChanged listener like having it react with a setText.

link|improve this answer
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 "foo" in the EditText. If you select it all (e.g., by double-clicking on it) and type 'a', the text will disappear. This is because the InputFilter will be called as:

filter("a", 0, 1, "foo", 0, 3);

The proposed input filter will return the empty string in this case (because src.length() < 1 is false), which explains the missing text.

The solution is to simply return dst.subSequence(dstart, dend) in the filter function. This will work fine even for deletions.

link|improve this answer
feedback

I just tried this myself,

To disable editing text:

.setFocusable(false);

this also sets setFocusableInTouchMode to false!

To enable editing text:

setFocusableInTouchMode(true);

this also sets setFocusable to true;

link|improve this answer
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.

EditText view = new EditText(DiscountCalculator.this) {
    public boolean getDefaultEditable() {
        return false;
    }
};
link|improve this answer
feedback

I think the correct way to achieve the desired effect is:

mEditView.setText("my text", BufferType.NORMAL);

If you want to switch between editable and non-editable you can do the following:

// Switch to non-editable
mEditView.setText(mEditView.getText(), BufferType.NORMAL);

// Switch back to editable
mEditView.setText(mEditView.getText(), BufferType.EDITABLE);
link|improve this answer
this doesn't work at all – JediPotPie Jan 11 '11 at 16:20
Try substituting mEditView.getText().toString() instead, and see if that works. I think this might actually work for you. – kcoppock Jan 21 '11 at 16:43
I think this only effects on the buffer and that doesn't make the field in the ui uneditable as then I suppose it will just contain immutable buffer that it gets discarded if there are any changes. – Timo Lehto Dec 10 '11 at 22:25
Agreed, this doesn't help much, prevents user from modifying input contents but in a really silly way. – Vladimir Volodin Jan 23 at 22:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.