播放.swf声音文件? [关闭]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了播放.swf声音文件? [关闭]相关的知识,希望对你有一定的参考价值。
我的android应用程序需要播放.swf文件,这些只是声音..是否有插件或其他东西所以我可以正常播放它们?谢谢。
答案
这是完美的解决方案::
package com.adySol;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebSettings.PluginState;
import android.webkit.WebView;
public class adySol extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
String url ="file:///android_asset/mulberrybush.swf";
// String url ="http://www.bing.com/";
WebView wv=(WebView) findViewById(R.id.webView1);
wv.getSettings().setjavascriptEnabled(true);
wv.getSettings().setPluginState(PluginState.ON);
wv.getSettings().setAllowFileAccess(true);
wv.loadUrl(url);
}
}
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white"
>
<WebView android:id="@+id/webView1" android:layout_width="match_parent" android:layout_height="match_parent"></WebView>
</LinearLayout>
以上是关于播放.swf声音文件? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章
我在linux上安装了gnash swf viewer,但是gnash swf viewer不能播放swf文件?右键点击打开时没有用!