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.
feedback
|
|
Use this simple code:
It works. | |||||||||
feedback
|
|
Add this to your EditText xml file:
It will do the same effect as android:editable="false". Worked for me, hope it'll work for you too. | ||||
|
feedback
|
|
I tried to do:
which should work, but for me it did not. I finished with this code:
which works perfectly. | |||
|
feedback
|
|
The developer doc page indicates that the proper substitute (since you are correct -
Have you tried that? | |||||||
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. | |||
|
feedback
|
|
There is the option of using InputFilters. Please see the accepted answer in this link | |||
|
feedback
|
|
What sdk are you using? I'm running android2.1 and set:
CAN work. And I also tried in android2.2, it can work too. This is my xml slice:
| ||||
|
feedback
|
|
will work but it just not listening to keys. User can see a cursor on the edittext. You can try That means user cannot see the cursor. To simply say it will became | |||
|
feedback
|
|
I've tried the following:
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):
Best Regards, Comments welcome, John Goche | |||
|
feedback
|