从浏览器返回 Android 应用程序,无需重新启动应用程序

发布于 2024-12-07 15:42:13 字数 557 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文