显示带有phonegap的网页
使用phonegap为android平台制作一个应用程序。 我想显示应用程序内某个选项卡的网页。 iFrame 无法工作,我该怎么做?
Making an app with phonegap for the android platform.
I want to show a webpage from a certain tab from within the application.
An iFrame is not working, how could I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的意思是您想要在同一个 WebView 中打开站点中的其他网页,而不是在单独的浏览器窗口中打开它们(默认行为)?
如果是这样,在 PhoneGap 1.1.0 中,您可以使用以下代码重写项目中 DroidGap 子类的 onCreate() 方法:
如果您需要从多个网站或域加载页面,则需要一种不同的方法:
为了防止页面加载之间出现令人不安的黑屏,您可以在 super.onCreate() 语句之后添加以下代码:
Do you mean that you want to open other web pages from your site in the same WebView instead of opening them in a separate browser window (the default behavior)?
If so, in PhoneGap 1.1.0, you can override the onCreate() method of the DroidGap subclass in your project with the following code:
If you need to load pages from more than one website or domain, you will need a different approach:
To prevent an unsettling black screen between page loads, you can add the following code right after the super.onCreate() statement:
请参阅此问题在xcode上的iframe中允许外部主机4.1 使用phonegap
Refer this question Allow external hosts in iframe on xcode 4.1 using phonegap