在Android 4.0.3下,我写了一个开机自动起来的服务,发现通过eclipse安装到小机后,再reboot,
MyScheduleReceiver类可以收到android.intent.action.BOOT_COMPLETED,并且可以启动服务。
但是通过手动安装APK后,MyScheduleReceiver类无法收到广播的消息android.intent.action.BOOT_COMPLETED,同时无法启动服务。
代码如下:
public class MyScheduleReceiver extends BroadcastReceiver {
// Restart service every 30 seconds
private static final long REPEAT_TIME = 1000 * 2;
@Override
public void onReceive(Context context, Intent intent) {
Intent service = new Intent(context, CustomFileMonitorService.class);
service.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startService(service);
}
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.gsl.demo.customfilemonitor"
android:versionCode="1"
android:versionName="1.0"
>
<uses-sdk android:minSdkVersion="15" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".FileMonitorActivity"
android:label="@string/app_name" >
<intent-filter>
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.MAIN"/>
</intent-filter>
</activity>
<receiver android:name=".MyScheduleReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
<service android:name=".CustomFileMonitorService"
android:label="CustomFileMonitorService"
android:icon="@drawable/ic_launcher"
android:enabled="true"
android:exported="true"
>
</service>
</application>
</manifest>
最后发现,Receiver部分要改为如下, 开机后,MyScheduleReceiver类才可以收到android.intent.action.BOOT_COMPLETED,并且可以启动服务。
<receiver android:name="com.gsl.demo.customfilemonitor.MyScheduleReceiver"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED"
>
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
实验了n次,最关建的问题还是不是上面的问题,应该是由于我直接强制reset机器导致的,先把该应用运行起来,之后按power键关机,再开机就可以了。跟同事讨论了这个问题还是没发现什么原因造成的。