Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make a readonly EditText. xml code seems android:editable="false" But I want to do this coding.

how can I do this

share|improve this question
See the link developer.android.com/reference/android/widget/… – ReNa Jun 17 '11 at 9:52
2  
editText.setInputType(InputType.TYPE_NULL); – redandblack Dec 27 '11 at 5:54
thanks redandblack for help – Google Jul 28 '12 at 5:12

7 Answers

up vote 21 down vote accepted

Please use this code..

Edittext.setEnabled(false);
share|improve this answer

If you setEnabled(false) then your editText would look disabled (gray, etc). You may not want to change the visual aspect of your editor.

A less intrusive way would be to use setFocusable(false).

I believe that this answers your question closer to your initial intent.

share|improve this answer
Still opens a dialog box. – javawebapps Jun 29 '12 at 14:44
1  
This is good, but the user can still "Paste" in the text field. – Moussa Jan 6 at 21:51

This works for me:

EditText.setKeyListener(null);
share|improve this answer
This would have been good, but the user can still "paste" in the field. Thumbs up anyways, even though this looks like a hack. I wish they had a setEditable() API. – Moussa Jan 6 at 21:49

The best is by using TextView instead.

share|improve this answer

Try using

editText.setEnabled(false);
editText.setClickable(false);
share|improve this answer
editText.setEnabled(false);
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) : "";
    }
} });

This will give you uneditable EditText filter. you first need to put the text you want on the editText field and then apply this filter.

share|improve this answer

Try overriding the onLongClick listener of the edit text to remove context menu:

EditText myTextField = (EditText)findViewById(R.id.my_edit_text_id);
myTextField.setOnLongClickListener(new OnLongClickListener() {
    @Override
    public boolean onLongClick(View v) {
        return true;
    }
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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