vote up 0 vote down star

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.

flag

3 Answers

vote up 1 vote down check

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|flag
vote up 1 vote down

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|flag
vote up 2 vote down

Have you tried http://developer.android.com/reference/android/widget/EditText.html#setText%28java.lang.CharSequence,%20android.widget.TextView.BufferType%29/">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|flag
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 at 0:59

Your Answer

Get an OpenID
or

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