当我将我的方向从纵向更改为横向时,它会重放启动画面,然后加载我的weburl。但有没有办法让它继续下去,所以它不会重播整个过程?我已经尝试了" android:configChanges =" orientation | screenSize",但似乎没有任何工作。
答案 0 :(得分:0)
将此添加到您的代码中
@Override
public void onConfigurationChanged(Configuration config) {
super.onConfigurationChanged(config);
}
编辑:添加此代码。
@Override
protected void onSaveInstanceState(Bundle bundle) {
webview.saveState(bundle);
}
在onCreate of Activity类中添加 -
if (savedInstanceState != null)
webview.restoreState(savedInstanceState);
else{
webview.loadUrl("url");
}