gpt4 book ai didi

android - 如何在 Android 中使用 deepLink

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

请帮助 MEEEE

在我的应用程序中,我想使用DeepLink,为此我编写了以下代码。
但是当运行应用程序时不建议我的应用程序并且只在 Chrome 浏览器中显示!

我的网址: sosapp://sosapp/hashcode/ghfhgfhgf?

我的代码:

<activity
android:name=".Activity.LandingActivity"
android:screenOrientation="sensorPortrait" />
<activity
android:name=".Activity.MainActivity"
android:screenOrientation="sensorPortrait">

<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="sosapp" android:host="sosapp"/>
</intent-filter>

</activity>

我该如何修复它,当从移动设备上点击此 Url 时,建议我的应用程序?

最佳答案

我已经尝试在我的 Activity 中使用您的链接并且工作正常。

我的 Activity list :

<activity android:name=".MyActivity">
<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:host="sosapp"
android:scheme="sosapp" />
</intent-filter>
</activity>

我的 Intent 用于调用 Activity

val action = Intent() 
action.data = Uri.parse("sosapp://sosapp/hashcode/ghfhgfhgf?")
startActivity(action)

关于android - 如何在 Android 中使用 deepLink,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48851864/

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