开发者

Android flash magazine application

开发者 https://www.devze.com 2023-04-04 17:26 出处:网络
Is it possible to cre开发者_如何转开发ate a magazine based on Android embedding flash in it?As your question is very wilde and generic, I can only say \"yes that\'s possible\"!

Is it possible to cre开发者_如何转开发ate a magazine based on Android embedding flash in it?


As your question is very wilde and generic, I can only say "yes that's possible"!

Here is a link to embed your swf file into an Android application.

Load an SWF into a WebView

public class Test3Activity 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/qualibus.swf";

        WebView wv=(WebView) findViewById(R.id.webView1);
        wv.getSettings().setPluginsEnabled(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"
    >
<WebView android:id="@+id/webView1" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent">
</WebView>
</LinearLayout>

Result:

Android flash magazine application

0

精彩评论

暂无评论...
验证码 换一张
取 消