我在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 ??
}
}