gpt4 book ai didi

安卓网址重定向

转载 作者:行者123 更新时间:2023-11-30 04:19:11 26 4
gpt4 key购买 nike

我有如下链接。

准确的网址

 <a href="activity_a://lookup/gelismeler">gelismeler</a>den 

在 textview 中,我使用上面的链接启用了链接,我想打开指定的 Activity 。但是,我明白了

android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=activity_a://lookup/gelismeler (has extras) }

我的 list xml 包含以下行

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

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

<data
android:host="lookup"
android:scheme="activity_a" />
</intent-filter>

那么这里有什么问题呢?我如何打开重定向到 myactivityname://functionname/parameters 的链接到 myactivity => function => with parameters ..

提前致谢

edit: 一些变化是根据。 @CommonsWare 建议

最佳答案

第 1 步:摆脱 LOOKUP , 因为没有这样的 Action 。

第 2 步:添加 <category android:name="android.intent.category.DEFAULT" /> ,因为我没有在 TextView 中链接该链接使用 BROWSABLE .

第 3 步:让您的方案保持小写,因为我认为这是方案的要求。

关于安卓网址重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9524512/

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