gpt4 book ai didi

android - IntentFilter 在创建运行时时不起作用

转载 作者:行者123 更新时间:2023-11-29 14:00:45 26 4
gpt4 key购买 nike

我有一个问题。我需要中断不是静态的链接,但用户将在运行时创建所有列表。所以我在运行时创建我的 intentfilter 对象。因此,当我在 list 文件中使用代码时,它可以工作。但是在 java 类中使用它对我不起作用。这是代码

这是行不通的

IntentFilter filter = new IntentFilter();
filter.addAction(Intent.ACTION_VIEW);
filter.addCategory(Intent.CATEGORY_DEFAULT);
filter.addCategory(Intent.CATEGORY_BROWSABLE);
filter.addDataAuthority("www.facebook.com", null);
filter.addDataScheme("http");
RecieveBroadcaster receiver = new RecieveBroadcaster();
registerReceiver(receiver, filter);

但是如果静态设置它在 list 中有效

        <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="twitter.com"/>
<data android:scheme="http" android:host="facebook.com"/>

</intent-filter>

最佳答案

在这种情况下,可能只是您的权限不匹配。在 list 版本中,您有 android:host="facebook.com",在编程版本中,您有 addDataAuthority("www.facebook.com", null)

DataAuthority 必须完全匹配。

关于android - IntentFilter 在创建运行时时不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9578125/

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