在 Android 应用程序中集成 Flash 游戏?
我想将 3 个 Flash 游戏集成到 Android 应用程序的菜单/列表中。因此,当用户从列表中选择游戏时,游戏将在 Android Flash Player 的帮助下开始。
最好使用 WebView 来完成此操作还是有更好的方法?我不知道将 Flash 游戏放在哪里才能将它们放入我编译的应用程序中。
有好的教程吗?
谢谢!
Have 3 flash games that I would like to integrate in a menu / list in an android app. So when the user selects the game from the list, the game starts with help of android flash player.
Is it best to do this with WebView or is there something better? I do not know where to place the flash games to get them in my compiled application.
Is there a good tutorial?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Adobe flash 提供了一种好方法:您可以为 android 应用程序构建一个air。使用它来创建菜单并将所有三个游戏编译到您的 AIR 应用程序中。
以下是一些有关它以及有关发布 AIR for Android 应用程序的教程链接:
AIR 到 Android,第 1 部分:http ://gotoandlearn.com/play.php?id=123
AIR 到 Android,第 2 部分:http://gotoandlearn.com/play.php?id=124
发布 AIR for Android 应用程序:http://gotoandlearn.com/play.php?id=131
我不相信 android flash 播放器可以从 Intent 启动,所以使用 Java Android 无法解决这个问题(对于现在)
你提到的第三种方法应该可行 - 使用网络视图。
Adobe flash provides one good way: You can build an air for android app. Use that to create your menu and compile all three games into your AIR app.
Here are some tutorial links about it and also about publishing AIR for Android applications:
AIR to Android, PART1: http://gotoandlearn.com/play.php?id=123
AIR to Android, PART2: http://gotoandlearn.com/play.php?id=124
Publishing AIR for Android applications: http://gotoandlearn.com/play.php?id=131
I don't believe the android flash player can be launched from an intent yet, so using the Java Android will not solve it (for now)
And a third approach you mentioned, ought to work - using a webview.