-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android TextInput auto Dismiss Keyboard #16563
Labels
Resolution: Locked
This issue was locked by the bot.
Comments
Is there some other way you try to dismiss keyboard? |
no |
@Sean-Snow I have the same issule, how did you resolve this? |
@syq7970 There is no solution |
@syq7970 @Sean-Snow my workaround on 0.49.3 is to focus and then blur immediately on Android. componentDidMount () {
if (Platform.OS === 'android') {
this.nameField.focus()
this.nameField.blur()
}
} This seems to be fixed in 0.50.4. In fact, the workaround crashes Android due to this issue #16821 |
Hi @Sean-Snow, |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Is this a bug report?
yes
Have you read the Contributing Guidelines?
yes
Environment
Packages: (all installed)
Steps to Reproduce
Expected Behavior
I hope the keyboard is always there
Actual Behavior
The keyboard dismiss automatically after a few seconds
Reproducible Demo
The text was updated successfully, but these errors were encountered: