Exemplo n.º 1
0
        public override bool OnRenderProcessGone(WebView view, RenderProcessGoneDetail detail)
        {
            if (!detail.DidCrash())
            {
                // Renderer was killed because the system ran out of memory.
                // The app can recover gracefully by creating a new WebView instance
                // in the foreground.
                Log.Error("MY_APP_TAG", "System killed the WebView rendering process " +
                          "to reclaim memory. Recreating...");

                if (mWebView != null)
                {
                    ViewGroup webViewContainer = view.FindViewById <ViewGroup>(Resource.Id.rl_game);
                    webViewContainer.RemoveView(mWebView);
                    mWebView.Destroy();
                    mWebView = null;
                }

                // By this point, the instance variable "mWebView" is guaranteed
                // to be null, so it's safe to reinitialize it.

                return(true); // The app continues executing.
            }
            return(false);
        }
Exemplo n.º 2
0
 public override bool OnRenderProcessGone(Android.Webkit.WebView view, RenderProcessGoneDetail detail)
 {
     System.Diagnostics.Debug.WriteLine("WebViewCallBack" + P42.Utils.ReflectionExtensions.CallerString() + ": ");
     return(base.OnRenderProcessGone(view, detail));
 }