将用java编写的活动添加到Android Phonegap应用程序中
我的朋友有一个 Phonegap 应用程序(用 JavaScript 编写),它以类似于 gridview 的东西开始。我想向此 gridview 添加一个新项目,当用户单击它时,我想启动一个我用 java 编写的 Activity。这可能吗?
最好的,
阿尼姆
My friend has a Phonegap application (written in JavaScript) that starts off with something similar to a gridview. I want to add a new item to this gridview and when the user clicks on it, I want to launch an Activity that I have written in java. Is this possible?
Best,
Aneem
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。您可以创建插件 并在
execute()
方法中使用this.ctx.startActivity(intent)
。Yes, it is possible. You can create a plugin and use
this.ctx.startActivity(intent)
in theexecute()
method.