向我的应用程序发送意图时,出现“无法实例化接收者”错误。看来Eclipse某种程度上看不到我的ExIntentReceiver
类。我不知道为什么会这样。 ExIntentReceiver位于同一程序包(com.example.app)中。
ExIntentReceiver.java:
package com.example.app
public class ExIntentReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if(action.equals("com.example.app.START_SERVICE")) {
Log.v("service", "is started");
} else if(action.equals("com.example.app.STOP_SERVICE")) {
Log.v("service", "is stopped");
}
}
}
表现:
<receiver android:name=".ExIntentReceiver" android:exported="true">
<intent-filter>
<action android:name="com.example.app.START_SERVICE" />
<action android:name="com.example.app.STOP_SERVICE" />
</intent-filter>
</receiver>
日志猫:
04-22 10:37:13.361: E/AndroidRuntime(11213): FATAL EXCEPTION: main
04-22 10:37:13.361: E/AndroidRuntime(11213): java.lang.RuntimeException: Unable to instantiate receiver com.example.app.ExIntentReceiver: java.lang.ClassNotFoundException: com.example.app.ExIntentReceiver
04-22 10:37:13.361: E/AndroidRuntime(11213): at android.app.ActivityThread.handleReceiver(ActivityThread.java:2261)
04-22 10:37:13.361: E/AndroidRuntime(11213): at android.app.ActivityThread.access$1600(ActivityThread.java:140)
04-22 10:37:13.361: E/AndroidRuntime(11213): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1313)
04-22 10:37:13.361: E/AndroidRuntime(11213): at android.os.Handler.dispatchMessage(Handler.java:99)
04-22 10:37:13.361: E/AndroidRuntime(11213): at android.os.Looper.loop(Looper.java:137)
04-22 10:37:13.361: E/AndroidRuntime(11213): at android.app.ActivityThread.main(ActivityThread.java:4921)
04-22 10:37:13.361: E/AndroidRuntime(11213): at java.lang.reflect.Method.invokeNative(Native Method)
04-22 10:37:13.361: E/AndroidRuntime(11213): at java.lang.reflect.Method.invoke(Method.java:511)
04-22 10:37:13.361: E/AndroidRuntime(11213): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1027)
04-22 10:37:13.361: E/AndroidRuntime(11213): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:794)
04-22 10:37:13.361: E/AndroidRuntime(11213): at dalvik.system.NativeStart.main(Native Method)
04-22 10:37:13.361: E/AndroidRuntime(11213): Caused by: java.lang.ClassNotFoundException: com.example.app.ExIntentReceiver
04-22 10:37:13.361: E/AndroidRuntime(11213): at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:61)
04-22 10:37:13.361: E/AndroidRuntime(11213): at java.lang.ClassLoader.loadClass(ClassLoader.java:501)
04-22 10:37:13.361: E/AndroidRuntime(11213): at java.lang.ClassLoader.loadClass(ClassLoader.java:461)
最佳答案
您应该在自己的意图过滤器中声明动作。
<receiver android:name=".ExtIntentReceiver " android:exported="true">
<intent-filter>
<action android:name="com.example.app.START_SERVICE" />
</intent-filter>
<intent-filter>
<action android:name="com.example.app.STOP_SERVICE" />
</intent-filter>
</receiver>
除此之外,请确保为清单中的
Receiver
提供正确的软件包名称。并确保您正确拼写。
关于android - 无法实例化接收器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16143246/