我正在使用 webview,我想在方向改变时停止重新加载页面。
我的活动中有以下内容:
@Override
public void onConfigurationChanged(Configuration config) {
super.onConfigurationChanged(config);
}
@Override
protected void onSaveInstanceState(Bundle outState ){
((WebView) findViewById(R.id.webView)).saveState(outState);
}
在我的布局中,我有:
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:configChanges="keyboardHidden|orientation"
android:visibility="gone" >
但是上面的代码不起作用。我在 Android 2.3.3 中测试它。