gpt4 book ai didi

android - 将深层链接数据添加到 MainActivity Intent 过滤器会删除设备中的图标

转载 作者:行者123 更新时间:2023-12-02 14:12:04 24 4
gpt4 key购买 nike

我正在尝试向我的应用程序添加深层链接,当我添加时:

<data android:scheme="http"
android:host="www.example.com"
android:pathPrefix="/gizmos" />

对于我的 MainActivity 中的 Intent 过滤器,编译后图标未安装在设备中。

这是 list 上的 Activity 部分:

    <activity
android:name=".MainActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:windowSoftInputMode="adjustPan"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http"
android:host="www.example.com"
android:pathPrefix="/gizmos" />

</intent-filter>
</activity>

最佳答案

您需要两个单独的intent-filter

    <intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<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="http"
android:host="www.xxx.com"
android:pathPrefix="/app" />
</intent-filter>

关于android - 将深层链接数据添加到 MainActivity Intent 过滤器会删除设备中的图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31481547/

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