Android: After Closing The App Its Still Running
I am using webview, and I'm appending some query string with the URL. Say URL is file:///android_asset/www/index.html and I have added the query string ?urlid=MindTree_Projects&
Solution 1:
You may have to call the methods onPause()
and onResume()
of the WebView Class.
@Override
protected void onPause()
{
super.onPause();
mWebView.onPause(); // pauses the WebView (JavaScript, flash etc.)
}
@Override
protected void onResume()
{
super.onResume();
mWebView.onResume(); // resumes the WebView (JavaScript, flash etc.)
}
@Override
protected void onDestroy()
{
super.onDestroy();
relativeLayoutPlaceholder.removeView(mWebView); // removes the WebView from its Placeholder
mWebView.destroy(); // destroys the WebView
mWebView = null;
}
Post a Comment for "Android: After Closing The App Its Still Running"