Search code examples
androidfacebookfacebook-comments

Facebook comments plugin - Contents disappear when clicked on 'Facebook Comments Plugin' text at bottom


I have implemented facebook comments functionality by referring this: http://www.androidhive.info/2016/09/android-adding-facebook-comments-widget-in-app/

I am facing strange issue. Check text 'Facebook Comments Plugin' at bottom in below screenshot. When I click this text, all contents of webview disappear. Check other screenshot. Please help me. Thanks in advance.

Before click

After Click


Solution

  • Fixed it by using following code inside UriWebviewClient

    @Override
    public void onPageFinished(WebView view, String url) {
        super.onPageFinished(view, url);
        if (url.contains("https://developers.facebook.com")) {
           //Do handling or load whatever you want.
        } 
    }