在webview android中旋转时如何解决问题的全屏视频?

时间:2019-11-06 19:23:08

标签: android

我在webview安卓系统中使用我的网站创建了android应用程序,我为全屏视频设置了“确定”,但是当任何视频全屏显示时,我的移动设备webview旋转并重新加载,并且页面从全屏退出。 我从堆栈溢出中检查了这个问题并获得了帮助,但我不知道为此状态编写代码

 @Override //reconfigure display properties on screen rotation
public void onConfigurationChanged(Configuration newConfig) {
    super.onConfigurationChanged(newConfig);

    //Checks the orientation of the screen
    if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT)
    {
        // handle change here ??
    }
    else if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE)
    {
        // or here ??
    }
}

0 个答案:

没有答案