androidfacebookandroid-webviewfacebook-android-sdkfbsdksharedialog

Facebook ShareDialog doesn't load after a WebView open


I am working on an android app which have local HTML pages to show in WebView and an option to share some content on Facebook using ShareDialog.

I have try clearing WebView cache before showing ShareDialog.


Solution

  • I was calling webView.pauseTimers() from onPause() of my Fragment, which is stopping all WebView process, resulting in above error.

    Fixed it by webView.resumeTimer() before showing dialog.