Can anyone tell me how to make an EditText not editable via XML? I tried setting android:editable to false, but (1) it is deprecated and (2) it didn't work.

link|improve this question

64% accept rate
1  
If not editable, why would you need the EditText? Wont using an ordinary TextView be enough? And is setEditable() function deprecated too? – kiki Oct 14 '10 at 4:52
For me this makes sense in order to enable standard copy paste for the contents. With a TextView it's not possible (at least not default behaviour) – Ixx Apr 30 at 15:01
Correction: It's a bad idea. On certain circunstances the view becomes editable, or the copy paste options doesn't show anymore. Will look for other approach. – Ixx Apr 30 at 15:09
feedback

9 Answers

up vote 22 down vote accepted

Use this simple code:

textView.setKeyListener(null);

It works.

link|improve this answer
1  
I was about to post this, but you beat me to it. This is the best answer. – Christopher Perry Jun 15 '11 at 0:56
1  
I want to set in not editable,, is there any way make it editable again...??? – Ankit Awasthi Jan 2 at 16:42
feedback

Add this to your EditText xml file:

<EditText ...
        android:clickable="false" 
        android:cursorVisible="false" 
        android:focusable="false" 
        android:focusableInTouchMode="false">
</EditText>

It will do the same effect as android:editable="false". Worked for me, hope it'll work for you too.

link|improve this answer
feedback

I tried to do:

textView.setInputType( InputType.TYPE_NULL );

which should work, but for me it did not.

I finished with this code:

textView.setKeyListener(new NumberKeyListener() {
    public int getInputType() {
        return InputType.TYPE_NULL;
    }

    protected char[] getAcceptedChars() {
        return new char[] {};
    }
});

which works perfectly.

link|improve this answer
feedback

The developer doc page indicates that the proper substitute (since you are correct - editable is deprecated) is to use android:inputType instead. Specifically:

android:inputType="none"

Have you tried that?

link|improve this answer
2  
Yes. No joy. :( – Fran Fitzpatrick Oct 14 '10 at 2:43
This is what they recommend on the dev page (developer.android.com/reference/android/R.attr.html), but alas, it doesn't seem to work. @kiki: There are perfectly good reasons to do this. – Scott Biggs Sep 20 '11 at 20:54
feedback

They made "editable" deprecated but didn't provide a working corresponding one in inputType.

By the way, does inputType="none" has any effect? Using it or not does not make any difference as far as I see.

For example, the default editText is said to be single line. But you have to select an inputType for it to be single line. And if you select "none", it is still multiline.

link|improve this answer
feedback

There is the option of using InputFilters. Please see the accepted answer in this link

link|improve this answer
feedback

What sdk are you using? I'm running android2.1 and set:

android:editable="false"

CAN work.

And I also tried in android2.2, it can work too.

This is my xml slice:

<EditText
        android:id="@+id/edit_question"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:editable="false"
        android:maxLines="4"
        />   
link|improve this answer
didn't work for me – Alex Apr 19 '11 at 17:50
feedback

textView.setKeyListener(null);

will work but it just not listening to keys.

User can see a cursor on the edittext.

You can try textView.setEnabled(false);

That means user cannot see the cursor. To simply say it will became TextView.

link|improve this answer
feedback

I've tried the following:

codeEditText.setInputType(InputType.TYPE_NULL);

this.codeEditText.setOnFocusChangeListener(new OnFocusChangeListener() {

  @Override
  public void onFocusChange(View v, boolean hasFocus) {

    if (hasFocus) {

      pickCode();

    }

  }

});
this.codeEditText.setOnClickListener(new OnClickListener() {

  @Override
  public void onClick(View v) {

    pickCode();

  }

});

but the problem was that if the edit text is the first in the form then it gets the focus and the pickCode() code which launches a new activity is called straight away. So I modified the code as follows and it seems to work quite well (except I cannot set the focus on the text edit but I don't need to):

itemCodeEditText.setFocusable(false);

this.itemCodeEditText.setOnClickListener(new OnClickListener() {

  @Override
  public void onClick(View v) {

    pickItem();

  }

});

Best Regards,

Comments welcome,

John Goche

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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