当我轮流使用我的装置时,这再次指控他。 例如,如果我在改变方向指控时有洞察力,我会再次 go。
我尝试:
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
setContentView(R.layout.principal);
}
以及居住国和居住国。 但我的问题依然存在。 如果有人能够帮助我举一个例子或说明如何做到这一点,我将不胜感激。
感谢!
我先解决了这一问题,我需要做的是,如果(savedInstanceState= 无):
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.principal);
webview.setWebViewClient(new WebViewClient());
if (savedInstanceState == null)
{
webview.loadUrl("http://www.apple.es");
}
}
@Override
protected void onSaveInstanceState(Bundle outState)
{
super.onSaveInstanceState(outState);
// Save the state of the WebView
webview.saveState(outState);
}
@Override
protected void onRestoreInstanceState(Bundle savedInstanceState)
{
super.onRestoreInstanceState(savedInstanceState);
// Restore the state of the WebView
webview.restoreState(savedInstanceState);
}
我希望我的问题和我的解决办法能够帮助一些人!