I tried to remove focus from empty editText but it isn't working correctly.
I called clearFocus()
on edittext
,and then I placed break point at my onFocusChanged()
function call.
Here is what happened:
onFocusChanged()
called 4 times with the focused parameters values false,true,false,true
.
What I thought was that onFocusChanged()
must be called only once (with focused = false)
Sorry for my bad English. Any help would be appreciated. Thanks
setFocusable(false); editText. setFocusableInTouchMode(true); editText. setFocusable(true); EditText will lose focus, but can gain it again on a new touch event.
On Android's Digital Wellbeing screen, tap Focus Mode. Choose the Set a Schedule option to block out the timeout you need from your phone. In the “Your distracting apps” list, select the programs you'd like to disable when Focus Mode is on.
Focusable in touch mode is a property that you can set yourself either from code or XML.
This is happening because your EditText
is the first focusable view.
From the docs,
Note: When a View clears focus the framework is trying to give focus to the first focusable View from the top. Hence, if this View is the first from the top that can take focus, then all callbacks related to clearing focus will be invoked after which the framework will give focus to this view.
You can try setting a dummy focusable view above the EditText
to clear the focus from it.
In xml, make parent layout
android:focusable="true"
android:focusableInTouchMode="true"
and then call clearFocus on edit text and then call parent request focus
mFragmentBase.editText.clearFocus();
mFragmentBase.parentLayout.requestFocus();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With