我正在尝试监听重启事件。
我创建了以下类:
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class OnBootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Log.i("MYBOOTRECEIVER", "HELLO!");
}
}
然后在清单文件中,我放入了以下 xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mypackage"
android:installLocation="internalOnly"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="3"
android:targetSdkVersion="8" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application android:label="@string/app_name" >
<receiver android:name=".OnBootReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
</application>
</manifest>
但是,在我安装了这个应用程序并重新启动设备后,什么也没有发生。(我使用的是带有 android 3.2 的 Galaxy Tab 8.9)。正如您从清单中看到的那样,我已经在内部存储器上安装了应用程序(就像在 stackoverflow 上的类似问题上所建议的那样)......我还进行了 Quickboot_poweron 操作(查看 Galaxy 选项卡是否具有与 htc 设备类似的行为) ……但什么都没有。我希望有人能帮助我!