gpt4 book ai didi

android - 当我单击电子邮件中的链接时如何在应用程序 android 中导航

转载 作者:行者123 更新时间:2023-11-30 05:11:27 24 4
gpt4 key购买 nike

我想通过电子邮件中的链接打开我的应用程序 Android (Nativescript),即单击此处重置密码

http://XX.XXX.XX.XX:XXXX/reset/1234567891011121314

.因此,当我从移动浏览器中单击链接时,我需要启动该应用程序。

有什么解决办法吗?

更新代码:

    <intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.VIEW" />
</intent-filter>
<intent-filter android:autoVarify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="xx.xxx.xx.xx" android:port="xxxx" android:path="reset">
</data>
</intent-filter>

我将链接更改为

http://mydomain.tk/v1/reset/1234567891011121314

<data android:scheme="http" android:host="mydomain.tk" android:path="/v1/reset">

不再有效。

最佳答案

我使用以下代码:

<intent-filter>
<action android:name="android.intent.action.VIEW"></action>

<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>

<data
android:host="www.my.app.com"
android:path="launch"
android:scheme="http"></data>
</intent-filter>

电子邮件链接设置为 http://www.my.app.com/launch .

引用:Launching Android Application from link or email

关于android - 当我单击电子邮件中的链接时如何在应用程序 android 中导航,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53654199/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com