我希望使用自定义操作在我的应用程序中启动一项活动。我找到了一些答案,但我尝试的所有内容都显示java.lang.RuntimeException
没有找到处理 Intent { act=com.example.foo.bar.YOUR_ACTION } 的活动。
这是我的清单文件中的活动:
<activity
android:name=".FeedbackActivity" >
<intent-filter>
<action android:name="com.example.foo.bar.YOUR_ACTION" />
</intent-filter>
</activity>
这就是我开始活动的方式:
Intent intent = new Intent("com.example.foo.bar.YOUR_ACTION");
startActivity(intent);
任何帮助将不胜感激。