从浏览器返回 Android 应用程序,无需重新启动应用程序
我正在使用 Phonegap 创建 Android 应用程序。该应用程序具有一项功能,允许用户通过打开 Android 网络浏览器来访问微型网站。微型网站有一个返回按钮,可以让用户返回到应用程序。
我创建了自己的方案,这样我就可以从 Android 浏览器启动该应用程序。
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="microsite" />
</intent-filter>
我的问题是,当从浏览器启动应用程序时,应用程序将重新启动。
我如何能够在不重新启动应用程序的情况下返回应用程序?如何回到我离开的地方?
I am using Phonegap to create an android application. The application has a feature that enables the user to visit a micro site by opening the android web browser. The micro site has a return button that will return the user back to the app.
I created my own scheme so I can launch the app from the android browser.
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="microsite" />
</intent-filter>
My problem is that when the app is launch from the browser, the app is restarted.
How will I be able to return to the app without restarting the app? How to return to where I left off?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论