Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我的应用程序看起来更漂亮。为此,我为应用程序启动制作了动画。其为 .swf 格式。我希望每当用户单击他的 android 设备上的应用程序图标并启动我的应用程序时,它首先播放动画,然后跳转到主要活动。我怎样才能做到这一点?我不知道该怎么做的主要是如何在应用程序启动时播放动画然后跳转到主要活动!任何人都可以在一个完整的例子的帮助下解释这个吗?我是安卓新手!
首先,启动画面不太适合 Android,但如果你想要它,你应该将它加载到 WebView 中:
String localUrl ="file:///android_asset/my_anim.swf"; WebView wv=(WebView) findViewById(R.id.anim_webView); wv.getSettings().setPluginsEnabled(true); wv.loadUrl(localUrl);