I would like to be able to remove the focus from the EditText. For example if the Keyboard appears, and the user hides it with the back button, I would like the focus and the cursor to disappear. How can it be done?

link|improve this question

74% accept rate
its good question to ask coz overidding the onKeyDown or any other method in the activity to detect back button pressed will not work if keyboard is up. Coz back button will low down the keyboard only and will not fire onKeyDown Delegate. So question comes which delegate got called when soft input keyboard low downs. we can then call requestFocus() method on any view we want. InputMethodManager might need to be enquired ... – Javanator Feb 20 '11 at 13:47
Is there any other view that can be focused after EditText? – Heidar Feb 21 '11 at 2:06
Is it possible to focus a WebView? – Alex1987 Feb 21 '11 at 2:06
feedback

5 Answers

up vote 3 down vote accepted

you can add this to onCreate and it will hide the keyboard everytime the activty starts You could also programatically change the focus to another item.

    this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
link|improve this answer
feedback

You can make cursor and focus disappear by

edittext.clearFocus();

But detect when the key board hide is a hard work.

link|improve this answer
feedback

You can also include android:windowSoftInputMode="stateHidden" in your manifest action section.

This is equivalent to :

this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

but in XML way.

FYI, you can also hide the keyboard with codes:

// hide virtual keyboard
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(mYourEditText.getWindowToken(), 0);
link|improve this answer
feedback

In the comments you asked if another view can be focused instead of the EditText. Yes it can. Use .requestFocus() method for the view you want to be focused at the beginning (in onCreate() method)

Also focusing other view will cut out some amount of code. (code for hiding the keyboard for example)

link|improve this answer
feedback

You can try here

It's working for me

link|improve this answer
While this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – Bill the Lizard Mar 30 at 13:24
feedback

Your Answer

 
or
required, but never shown

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