カスタムアクションを使用してアプリでアクティビティを開始しようとしています。いくつかの答えを見つけましたが、java.lang.RuntimeException
インテント{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);
どんな助けでも大歓迎です。