作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在另一个线程上加载我的 WebView ,以便在请求加载后我可以在屏幕上添加一个按钮。
我这样做:
private class CustomWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
MyView myView = new myView();
myView.setUrl(url);
myView.setWebView(view);
new DownloadFilesTask().execute(myView);
return true;
}
}
private class DownloadFilesTask extends AsyncTask<MyView, Integer, Long> {
protected Long doInBackground(MyView... myView) {
long totalSize = 0;
MyView amyView = myView[0];
WebView view = amyView.getWebView();
String url = amyView.getUrl();
view.loadUrl(url);
return totalSize;
}
protected void onProgressUpdate(Integer... progress) {
}
protected void onPostExecute(Long result) {
rl.setVisibility(View.VISIBLE);
}
}
我收到错误:
Caused by: java.lang.RuntimeException: java.lang.Throwable: Warning: A WebView method was called on thread 'AsyncTask #2'. All
WebView methods must be called on the UI thread. Future versions of WebView may not support use on other threads.
如何在 URL 加载后使 View 可见?
最佳答案
您不应该在后台线程中加载WebView
;它需要在 UI 线程上加载。
我会向您的 WebView
添加一个监听器,当 URL 加载完成后,您可以添加按钮。
yourWebView.setWebViewClient(new WebViewClient() {
public void onPageFinished(WebView view, String url) {
// add your button here
}
});
yourWebView.loadUrl(url);
关于java - 使用异步任务在 webview 中加载 url 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29902928/
我是一名优秀的程序员,十分优秀!