WebView#loadDataWithBaseURL
android.content.Intent.ACTION_SEND
resume
if (mWebViewCore.getSettings().getNeedInitialFocus())
since mWebViewCore is now nullThe only place in code where mWebViewCore is nullified is at WebView#destroy - how do I recover from this? Do I need to recreate the browser and load my data all over again, that seems pretty wasteful? I really appreciate good suggestion at this point
Well, I can tell you that I just tested using a WebView
with loadDataWithBaseURL()
, where the page I loaded had a link. Clicking on the link brings up the Browser application, as expected. BACK button-ing out of the Browser brings back my app with the WebView
just fine, no exceptions.
So, either ACTION_SEND
/Gmail are somehow special, or there is something more going on with your app.
Can you replicate the problem in a small project that you can post somewhere?