每次启动应用程序时,如何刷新Webview的内容?

时间:2015-05-01 20:19:44

标签: android webview android-webview android-websettings android-webservice

每次有人启动我的应用程序时,我都会尝试刷新webview的内容。有人会在应用程序中转到其他页面或转到后台然后重新启动应用程序,我希望我的webview内容能够刷新/重新加载基于我在服务器上所做的最新更改。 这是我到目前为止的代码:

priceB_values = priceB_values(1:4,6);

2 个答案:

答案 0 :(得分:1)

您可以这样做,但请务必检查WebView是否为空,因为onResume之前调用了onCreateWebView可能不存在onResume @Override protected void onResume() { super.onResume(); if(webView != null){ webView.loadUrl(...); or webView.reload(); } } 了!

_T.E.S.T

答案 1 :(得分:1)

您需要覆盖onResume(){}然后再次加载网址。