gpt4 book ai didi

android - 我的 Activity 没有被 action_view 调用

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

我在应用程序 com.example.one 中创建了一个 Activity ,它调用应用程序 com.example.two 中的另一个 Activity 。在 Activity 两个 list 中,我声明了以下 intent-filter

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

<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="http" />
</intent-filter>

然而,在使用操作调用此 Activity 时 - Intent.ACTION_VIEW 或什至使用 android.intent.action.VIEW 直接调用浏览器而不是我放置的 Intent 选择器。

Intent ii=new Intent(Intent.ACTION_VIEW);
ii.setData(Uri.parse("http://www.google.com"));
startActivity(Intent.createChooser(ii,"done"));

请更新为什么我没有获得浏览器和我的 Activity 的 Intent 选择器。谢谢

最佳答案

可能您需要包含另一个带有 intent 过滤器的可浏览类别。 <category android:name="android.intent.category.BROWSABLE" />

关于android - 我的 Activity 没有被 action_view 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22219438/

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