Facebook 评论插件 - 单击底部的 'Facebook Comments Plugin' 文本时内容消失

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

我通过参考这个实现了facebook评论功能: http://www.androidhive.info/2016/09/android-adding-facebook-comments-widget-in-app/

我遇到了一个奇怪的问题。检查下方屏幕截图底部的文本 'Facebook Comments Plugin'。当我单击此文本时,webview 的所有内容都消失了。检查其他屏幕截图。请帮我。提前致谢。

通过在 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.
    } 
}