gpt4 book ai didi

android - 使用自定义操作启动 Activity

转载 作者:IT王子 更新时间:2023-10-29 00:04:39 29 4
gpt4 key购买 nike

我希望使用自定义操作在我的应用中启动一项 Activity 。我找到了一些答案,但我尝试的所有方法都会抛出 java.lang.RuntimeException 说 No Activity found to handle Intent { act=com.example.foo.bar.YOUR_ACTION }。

这是我的 list 文件中的 Activity :

<activity
android:name=".FeedbackActivity" >
<intent-filter>
<action android:name="com.example.foo.bar.YOUR_ACTION" />
</intent-filter>
</activity>

这就是我开始 Activity 的方式:

Intent intent = new Intent("com.example.foo.bar.YOUR_ACTION");
startActivity(intent);

任何帮助将不胜感激。

最佳答案

我认为您需要为您的 Intent 过滤器添加一个默认类别,例如。

<activity
android:name=".FeedbackActivity" >
<intent-filter>
<action android:name="com.example.foo.bar.YOUR_ACTION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>

this answer了解更多信息。

关于android - 使用自定义操作启动 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10921451/

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