我正在使用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中测试它。
答案 0 :(得分:3)
将android:configChanges="keyboardHidden|orientation"
添加到您的AndroidManifest.xml
文件中此布局使用的活动
<activity
android:name=".UserProfileActivity"
android:configChanges="orientation|screenSize|keyboardHidden"/>
某些版本可能不支持新版本方向的用户屏幕大小,需要使用screenize for configChanges