You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If video iframe belove some other content (text and ect) after closing fullscreen webview auto scrolls to the top of the page.
There is no issue if not apply FLAG_FULLSCREEN.
is there is a way to make it working with FLAG_FULLSCREEN?
The text was updated successfully, but these errors were encountered:
for me the issue was that webview have match_perent or wrap_content in height and after applying FLAG_FULLSCREEN webview lose it height.
solution was to set layoutParams.height = height before FLAG_FULLSCREEN
//when going fullscreen
int positionY = webView.getScrollY();
//when exiting fullscreen
webView.postDelayed(new Runnable() {
@Override
public void run() {
webView.scrollTo(0, positionY);
}
// Delay the scrollTo to make it work
}, 800);
If video iframe belove some other content (text and ect) after closing fullscreen webview auto scrolls to the top of the page.
There is no issue if not apply FLAG_FULLSCREEN.
is there is a way to make it working with FLAG_FULLSCREEN?
The text was updated successfully, but these errors were encountered: