如何在Android WebView中打开Chatango聊天?

时间:2014-03-28 23:40:35

标签: android android-webview

我似乎无法在Android WebView中打开Chatango聊天。我可以在Android浏览器和Android Chrome浏览器中打开聊天,但不能在WebView中打开。有谁知道我怎么解决这个问题?我的代码如下:

public void chat()
{
    WebView chat = (WebView) findViewById(R.id.chatView);
    chat.getSettings().setBuiltInZoomControls(true);
    chat.getSettings().setJavaScriptEnabled(true);
    chat.getSettings().setPluginState(WebSettings.PluginState.ON);
    chat.loadUrl("http://lgthesandbox.chatango.com/");
    chat.setWebViewClient(new WebViewClient());
}

我知道我的代码是正确的,因为我可以在WebView中加载其他网址,但Chatango聊天只是拒绝打开。

2 个答案:

答案 0 :(得分:1)

看起来Chatango正在使用Flash播放器。 Android不再支持此功能,而且从KitKat开始,Flash无法在WebView中播放。

答案 1 :(得分:0)

您只需添加:

chat.getSettings().setDomStorageEnabled(true);

经过测试和工作。