Butterfly
Butterfly

Reputation: 455

Enable Edittext after disabling it

OnButtonClick listener I want to disable the EditText to edit, and then turn it on again.

With below two lines I disabled EditText

 editTextWight.setEnabled(false);
 editTextWight.setFocusable(false);

But when I try to turn it back fails. The keyboard does not open.

editTextWight.setFocusable(true);
editTextWight.setFocusableInTouchMode(true);
editTextWight.setClickable(true);
editTextWight.setEnabled(true);

Please help me to enable the EditText.

Upvotes: 2

Views: 3359

Answers (3)

Butterfly
Butterfly

Reputation: 455

Thank you Eenvincible and sajan. Your answers togheter help me to solve my problem. I enabled the editing window with these 4 methods.

    editTextWight.setEnabled(true);
    editTextWight.setInputType(InputType.TYPE_CLASS_NUMBER);
    editTextWight.setFocusable(true);
    editTextWight.setFocusableInTouchMode(true);

Upvotes: 4

Eenvincible
Eenvincible

Reputation: 5626

You can try this two lines that work for my project code:

editTextWight.setFocusable(true);
editTextWight.setFocusableInTouchMode(true);

I do this for example afterTextChanged() is called because I had to disable this EditText first then enable it later!

So, just try it with ONLY two method calls above instead of all the four.

Good luck and let me know if it worked!

Upvotes: 6

sajan
sajan

Reputation: 389

to disable edit text use

editTextWight.setEnabled(false);
editTextWight.setInputType(InputType.TYPE_NULL);
editTextWight.setFocusable(false);

to enable edit text use

editTextWight.setEnabled(true);
editTextWight.setInputType(InputType.TYPE_CLASS_TEXT);
editTextWight.setFocusable(true);

Upvotes: 2

Related Questions