我正在尝试使用webview在我的Android应用内播放流媒体mp3,从这里开始:http://www.whatisthatsong.net/charts-lists/charts%20and%20lists-mp3/classic%20rock/37.%20Pink%20Floyd%20-%20Comfortably%20Numb.mp3
但是mp3没有播放,只显示白屏(在模拟器上)。这是Webview代码片段:
webView = (WebView) findViewById(R.id.webView1);
webView.getSettings().setPluginsEnabled(true);
webView.getSettings().setPluginState(WebSettings.PluginState.ON);
webView.getSettings().setJavaScriptEnabled(true);
webView.setWebViewClient(yourWebClient);
webView.loadUrl("http://www.whatisthatsong.net/charts-lists/charts%20and%20lists-mp3/classic%20rock/37.%20Pink%20Floyd%20-%20Comfortably%20Numb.mp3");
如何正确播放mp3?