Phonegap 支持原生 Android 菜单吗?
是否有解决方法或phonegap插件可以使用它在Android中创建本机上下文菜单?我不想在菜单按下事件上注入/显示 HTML,而是寻找一种本地路径来解决此问题。
Is there a workaround or a phonegap plugin using which its possible to create native contextual menu in Android? I'm not looking to inject/show HTML on menu press event, rather I'm looking for a native route to solve this problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以轻松地将本机菜单添加到扩展 DroidGap 的类中,就像添加任何其他 Activity 一样,因为 DroidGap 本身只是 Activity 的子类。
You can easily add a native menu to the class that extends DroidGap, just as you would any other activity, as DroidGap itself is just a child class of Activity.
phonegap 仅加载 html 页面。然后你可以使用 javascript 在该 html 页面上创建任何内容,并使用phonegap 访问本机内容,例如相机、画廊 tc。
您可以使用本机代码创建一个页面,然后使用phonegap 单击某些内容时加载一个 html 页面。
但这会不会违背了电话间隙的目的?
有大量 JS 库提供了原生的外观和感觉
phonegap only loads an html page. then u can create anything on that html page using javascript and access the native things like camera, gallery tc using phonegap.
You can create a page in native code and then load an html page on clicking on something using phonegap.
But wont that be defeating the purpose of phonegap?
There are loads of JS libraries that give the native look and feel