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.
|
|
|
|
|
|
|
I think an
|
|||
|
|
|
|
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
If your feeling ambitious you could probably do something with the EditText's |
||
|
|
|
|
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:
(emphasis mine) |
||
|