I use a WebView to display some internet content on one of our app's Activities.
The problem is that when the user switches out of this activity, WebView's threads keep running!
The problematic threads are:

Thread [<17> WebViewCoreThread] (Running)
Thread [<25> CookieSyncManager] (Running)
Thread [<19> http0] (Running)
Thread [<29> http1] (Running)
Thread [<31> http2] (Running)
Thread [<33> http3] (Running)

Pausing each one of these threads, and checking what it is busy doing:

Thread [<17> WebViewCoreThread] (Suspended)
    Object.wait(long, int) line: not available [native method]
    MessageQueue(Object).wait() line: 288
    MessageQueue.next() line: 148
    Looper.loop() line: 110
    WebViewCore$WebCoreThread.run() line: 471
    Thread.run() line: 1060

Thread [<25> CookieSyncManager] (Suspended)
    Object.wait(long, int) line: not available [native method]
    MessageQueue(Object).wait(long) line: 326
    MessageQueue.next() line: 144
    Looper.loop() line: 110
    CookieSyncManager(WebSyncManager).run() line: 90
    Thread.run() line: 1060

Thread [<19> http0] (Suspended)
    Object.wait(long, int) line: not available [native method]
    RequestQueue(Object).wait() line: 288
    ConnectionThread.run() line: 93

I wonder how can I tell the Looper in each of those threads to quit.

I tried calling webView.destroy() in the activity's onPause() method, but it had no influence.
When I disable the call for opening a web page in the webView ( webView.loadUrl(...) ), those threads naturally are not started, and therefore don't stay on after leaving the activity.

Any ideas as to how I can make WebView's threads stop after leaving their activity?

link|improve this question
"Any ideas as to how I can make WebView's threads stop after leaving their activity?" Why do you care? What specific harm is it causing? – CommonsWare Jan 11 '10 at 13:09
1  
I have been trying to avoid having extra threads running, holding resources in memory and (possibly) adding more cpu scheduling slots. Are you saying it will have no influence on performance nor resources? – Amit Jan 13 '10 at 8:53
1  
same here. WebView threads drains battery too much. – xrath Jun 13 '10 at 12:58
feedback

6 Answers

up vote 7 down vote accepted

You should be able to stop / resume these threads by calling the onPause / onResume on the webview.

Those are however hidden, so you will need to do it through reflection. The following code worked for me:

Class.forName("android.webkit.WebView").getMethod("onPause", (Class[]) null).invoke(webView, (Object[]) null);

Where webView is the instance of WebView.

Also see: http://code.google.com/p/android/issues/detail?id=10282

link|improve this answer
Thanks for you answer. As the bug report in the url you provided says, it might work, but it "feels a little dirty". I guess for now it is the best answer to this question. – Amit Aug 25 '10 at 11:16
feedback

My solution, in extended webview class(tested in android 2.2, andriod 2.3, android 3.1):

private boolean is_gone=false;
public void onWindowVisibilityChanged(int visibility)
       {super.onWindowVisibilityChanged(visibility);
        if (visibility==View.GONE)
           {try
                {WebView.class.getMethod("onPause").invoke(this);//stop flash
                }
            catch (Exception e) {}
            this.pauseTimers();
            this.is_gone=true;
           }
        else if (visibility==View.VISIBLE)
             {try
                  {WebView.class.getMethod("onResume").invoke(this);//resume flash
                  }
              catch (Exception e) {}
              this.resumeTimers();
              this.is_gone=false;
             }
       }
public void onDetachedFromWindow()
       {//this will be trigger when back key pressed, not when home key pressed
        if (this.is_gone)
           {try
               {this.destroy();
               }
            catch (Exception e) {}
           }
       }
link|improve this answer
Works great! it actually made my app much faster. – Rotemmiz Apr 25 at 12:23
feedback

Take a look at this andev.org thread (http://www.anddev.org/other-coding-problems-f5/webviewcorethread-problem-t10234.html).

See the response... Re: WebViewCoreThread problem - Postby potatoho

2) To pause flash you have to call hidden methods WebView.onPause() / WebView.onResume().

3) To pause WebViewCoreThread you use WebView.pauseTimers() / WebView.resumeTimers().

I skipped the onPause/onResume, but I implemented webView.pauseTimers() and webView.resumeTimers() and it at least stops the CPU bleed.

I also added CookieSyncManager.getInstance().stopSync() / startSync to my onPause/onResume as well.

link|improve this answer
Thanks, i found solution in the blog:In your Activity onPause you should call WebView.onPause() and WebView.pauseTimers(). In your Activity onResume you should call WebView.onResume() and WebView.resumeTimers(). But since there is a one-off error in the refcount, you need to call WebView.resumeTimers() when you first create the WebView. WebView.class.getMethod("onPause").invoke(webview); – diyism Sep 26 '11 at 1:44
webview.pauseTimers(); – diyism Sep 26 '11 at 2:34
feedback

Thanks for these info, I had this problem pausing sounds in my swf on webView when I press the lock button on the phone, onPause and onResume still plays my swf when i press the unlock button but the activity is still not visible, I suggest you place these on onWindowFocusChanged if you want to pause and resume playing of swf sounds in webView

@Override
public void onWindowFocusChanged(boolean hasFocus) {
gameView = (WebView) findViewById(R.id.gameView);
    // TODO Auto-generated method stub
    if (hasFocus) {
        try {
            Class.forName("android.webkit.WebView")
                    .getMethod("onResume", (Class[]) null)
                    .invoke(gameView, (Object[]) null);
        } catch (Exception e) {

        }
        gameView.resumeTimers();
        gameView.loadUrl("javascript:setflashfocus()");
    } else {
        try {
            Class.forName("android.webkit.WebView")
                    .getMethod("onPause", (Class[]) null)
                    .invoke(gameView, (Object[]) null);
        } catch (Exception e) {

        }
        gameView.pauseTimers();
    }
    super.onWindowFocusChanged(hasFocus);
}
link|improve this answer
feedback

I'm seeing the problem you are having. It looks like several threads start and remain running in the background:

ID   Tid      Status      utime  stime  Name
--   ---      ------      -----  -----  ----
8    27517    wait        107    7      WebViewCoreThread   
9    27519    timed-wait  0      0      CookieSyncManager   
10   27520    wait        1      0      http0   
11   27521    wait        1      0      http1   
12   27522    wait        0      1      http2   
13   27523    wait        0      0      http3   
14   27524    wait        10     6      WebViewWorkerThread 
16   27530    timed-wait  1      1      pool-1-thread-1 
17   27527    timed-wait  0      0      IdleReaper  
18   27528    native      0      0      Binder Thread #3    
19   27529    native      0      0      Binder Thread #4    
20   27531    timed-wait  0      1      pool-1-thread-2 

By the looks of it, they get re-used when you come back around so I guess no harm no foul?

I too would like to be able to stop and destroy these threads as it would free up some memory for other activities that the user might be headed to.

link|improve this answer
feedback

I had to call onDestroy of the WebView to clear the memory specifically for the webview. I was loading flash in and it was killing my app when we go back to this activity with a webview. Flash will eat you alive if you don't destroy your WebView EVERY TIME you're done with it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.