問題の説明
loadDataWithBaseURL メソッドを呼び出して埋め込みデータを渡して、SWF ビデオを再生しようとしています。しかし、ビデオの再生が開始されず、白い画面が表示されるだけです。私は何か間違っていますか?
ソースコード
protected void onCreate(Bundle savedInstanceState) {
// Get Web View from the layout.
mWebView = (WebView) findViewById(R.id.webViewOnlieWebCams);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setPluginsEnabled(true);
mWebView.getSettings().setAllowFileAccess(true);
String mimeType = "text/html";
String encoding = "utf-8";
String embed = "<embed type=\"application/x-shockwave-flash\" src=\"/bundles/mymain/swf/player-licensed.swf\" width=\"320\" height=\"390\" style=\"undefined\" id=\"mpl\" name=\"mpl\" quality=\"low\" allowfullscreen=\"true\" allowscriptaccess=\"always\" wmode=\"opaque\" flashvars=\"autostart=true&file=camera39.stream&streamer=rtmp://wss.yerevan.am/axis&logo=/bundles/mymain/images/logo10.png&logo.hide=false&logo.position=bottom-left&logo.timeout=3\">";
mWebView.loadDataWithBaseURL(null, embed, mimeType, encoding, "");
}