我有一个非常简单的问题让我疯了。我正在创建一个BroadcastReceiver,在清单上声明它但它不会运行。我试图让它在设备启动时触发。这是代码:
package com.vullnetdyla.bcreceiver;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class Receiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Log.d("ftw", "It worked");
}
}
清单文件:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.vullnetdyla.bcreceiver"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:theme="@style/AppTheme">
<receiver android:name="com.vullnetdyla.bcreceiver.Receiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
答案 0 :(得分:4)
您是否有一些用户可以启动的活动?
如果不是这就是你的问题!因为android 3.1安装后的应用程序(包更具体)处于停止状态并且没有收到任何广播。用户必须手动启动它才能使其正常工作。 请参阅Android 3.1的release notes中的“启动已停止应用程序的控件”部分 另请参阅flags FLAG_INCLUDE_STOPPED_PACKAGES,FLAG_EXCLUDE_STOPPED_PACKAGES。