androidwebview timeout

Posted 小毛驴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了androidwebview timeout相关的知识,希望对你有一定的参考价值。

  1. public class MyWebViewClient extends WebViewClient {  
  2.     boolean timeout;  
  3.    
  4.     public MyWebView() {  
  5.         timeout = true;  
  6.     }  
  7.    
  8.     @Override  
  9.     public void onPageStarted(WebView view, String url, Bitmap favicon) {  
  10.         new Thread(new Runnable() {  
  11.             @Override  
  12.             public void run() {  
  13.                 try {  
  14.                     Thread.sleep(1000);  
  15.                 } catch (InterruptedException e) {  
  16.                     e.printStackTrace();  
  17.                 }  
  18.                 if(timeout) {  
  19.                     // do what you want  
  20.                 }  
  21.             }  
  22.         }).start();  
  23.     }  
  24.    
  25.     @Override  
  26.     public void onPageFinished(WebView view, String url) {  
  27.         timeout = false;  
  28.     }  
  29. http://blog.csdn.net/dreamer0924/article/details/8640797
  30. }  

以上是关于androidwebview timeout的主要内容,如果未能解决你的问题,请参考以下文章

android 中 webview 怎么用 localStorage

android webview怎样点击按钮全屏播放

android webview如何去除网页下方浮起的广告

android 中 webview 怎么用 localStorage

如何给android的webview增添方法

android webview 都有哪些软件应用