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.
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.
}
}