Im和我想停下來重新加載頁面方向改變時。Android的web視圖操縱定向使用的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" >
但上面的代碼沒有工作。林在安卓2.3.3測試它。
RU要旋轉該活動有該網頁流量? – Sumant
其優良只要頁面是一樣的 –