-
Notifications
You must be signed in to change notification settings - Fork 481
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
overlaysWebView change the overlay not only status bar but the keyboard also #103
Comments
Platform? |
platform Android |
Same here, how to fix? |
Can you provide a screenshot? |
I believe this might be related to #110 |
@breautek yeah but any solutions? |
@tharunkumar0 No, I spent a few hours playing with it, but I don't have much experience in native android development. Here is what I do know... The view gets a FULLSCREEN attribute, which appears to be necessary to get the overlay status bar, but it also messes up the keyboard functionality. The view has softInputMode of ADJUST_RESIZE, which tells the view to resize when the keyboard is visible. The problem is, ADJUST_RESIZE isn't compatible with the FULLSCREEN flag. So while FULLSCREEN flag is set, the keyboard will just appear above the view. |
This is related to https://issues.apache.org/jira/browse/CB-13300 and #128 If you don't want to wait for the PR to be merged, you use my fork in the meantime: |
After calling StatusBar.overlaysWebView(true); keyboard also cover webview instead of resize it
The text was updated successfully, but these errors were encountered: