我来到这里是因为我真的不明白为什么我没有得到BroadcastReceiver 我有一个名为NotifService的服务,它可以创建通知。 我按照以下代码创建了一个接收器:
public class MyReceiver extends BroadcastReceiver {
Intent myIntent;
@Override
public void onReceive(Context context, Intent intent) {
Log.d("2erlog","2erlog>>>>>>>>>>>>>>>>>>>>>>>>");
myIntent = new Intent(context, NotifService.class);
context.startService(myIntent);
Log.d("3erlog","3erlog>>>>>>>>>>>>>>>>>>>>>>>>");
}
}
在这里你可以看到我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.notifplugunplug"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<service android:name="NotifService"/>
<activity
android:name="com.example.notifplugunplug.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Declaring broadcast receiver for BOOT_COMPLETED event -->
<receiver android:name=".MyReceiver" android:enabled="true" android:exported="false">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
</application>
</manifest>
我知道该服务永远不会启动,因为我从未看到我创建的日志,并且我看不到服务中显示的通知。
谢谢你们!
答案 0 :(得分:2)
“android.intent.action.BOOT_COMPLETED”是全球广播 由于您已将BroadcastReceiver定义为android:exported =“false”,因此它只会获得本地广播 将其更改为android:exported =“true”。
答案 1 :(得分:1)
将广播接收器放在不同的包中 你的包是com.example.notifplugunplug 然后右键单击它并在其下创建一个新包 com.example.notifplugunplug.myreciever 然后将广播接收器放在其下