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?
feedback
|
|
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.
| |||
|
feedback
|
|
You can make cursor and focus disappear by
But detect when the key board hide is a hard work. | |||
|
feedback
|
|
You can also include android:windowSoftInputMode="stateHidden" in your manifest action section. This is equivalent to :
but in XML way. FYI, you can also hide the keyboard with codes:
| ||||
|
feedback
|
|
In the comments you asked if another view can be focused instead of the EditText. Yes it can. Use Also focusing other view will cut out some amount of code. (code for hiding the keyboard for example) | |||
|
feedback
|
|
It's working for me | ||||
feedback
|