androidwebview timeout
Posted 小毛驴
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了androidwebview timeout相关的知识,希望对你有一定的参考价值。
- public class MyWebViewClient extends WebViewClient {
- boolean timeout;
- public MyWebView() {
- timeout = true;
- }
- @Override
- public void onPageStarted(WebView view, String url, Bitmap favicon) {
- new Thread(new Runnable() {
- @Override
- public void run() {
- try {
- Thread.sleep(1000);
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
- if(timeout) {
- // do what you want
- }
- }
- }).start();
- }
- @Override
- public void onPageFinished(WebView view, String url) {
- timeout = false;
- }
- http://blog.csdn.net/dreamer0924/article/details/8640797
- }
以上是关于androidwebview timeout的主要内容,如果未能解决你的问题,请参考以下文章
android 中 webview 怎么用 localStorage