将参数从 java 活动传递到 Adobe AIR 应用程序
我们如何在启动另一个 AIR 类型的应用程序时从 Java Activity 传递参数?
我们对java活动的做法是使用Intent的extra。 Android上的java Activity和AIR应用程序的参数传递机制是什么?目前,我们通过共享一个公共位置(sqlite db)并每秒轮询一次来传递参数。这不是一个好的设计,我相信一定有一些好的方法可以做到这一点。请赐教。
How can we pass parameters from a Java Activity while launching another application of type AIR?
The way we do for java activities is using Intent's extra. What are the parameter passing mechanism when it's java Activity and AIR app on Android. Currently we are passing parameters by sharing a common place (sqlite db) and polling it every second. This is not a good design and I am sure there must be some good way to do this. Please enlighten me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 Adobe AIR 2.5 中,您可以使用自定义 URI 将参数传递到 AIR 应用程序。
来自此处。
In Adobe AIR 2.5 you can pass parameters to AIR app using custom URIs.
From here.
除了上述答案之外,要使用 Intent 从 Android 应用程序启动 adobe air 应用程序,请执行以下操作:
In addition to the above answer, to launch an adobe air application from an android app using Intent do this:
swf 文件是 mxml 的输出,是将值从 android 传递到 mxml 或 .swf 的上述方法。我们必须从 .swf 或 .mxml 方面进行哪些更改。我正在 FB(flash Builder) 4.5 上编译 mxml 并从 android eclipse 调用它。
平均值,
索拉布
swf files are the output of the mxml , is the above method for passing the values from the android to the mxml or to the .swf . What changes we have to do from the .swf or .mxml side.I am compiling the mxml on FB(flash Builder) 4.5 and invoking it from the android eclipse.
Rgds,
saurabh