我看到这个问题已经被提了很多,但我似乎无法解决我的问题。
广播接收器中的onReceive()
方法未被调用。
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.app.test"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.app.test.TestActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/app_name"
android:theme="@style/FullscreenTheme" >
<intent-filter>
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<receiver android:enabled="true" android:name=".BootUpReceiver"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
</application>
</manifest>
BootUpReceiver.java
package com.app.test;
public class BootUpReceiver extends BroadcastReceiver {
private static final String TAG = "TESTAPP_BootUpReceiver";
@Override
public void onReceive(Context context, Intent intent) {
Log.d(TAG, "helllllllllllllllo");
Toast.makeText(context, "boot completed received", Toast.LENGTH_LONG).show();
// Intent i = new Intent(context, TestActivity.class);
// i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
// context.startActivity(i);
}
}
尝试过使用整个路径代替.BootUpReceiver
,但没有用。没有从logcat或任何Toast消息中看到任何内容。进入adb shell
并以这种方式发出boot_completed事件无助于设备重新启动。
我做错了什么吗?我读过有关应用程序在设备启动时处于非活动状态的内容,这是否会影响我的问题?
答案 0 :(得分:0)
以下是Android开发者网站的一些参考 http://developer.android.com/guide/topics/data/install-location.html
广播接收器正在侦听&#34;启动完成&#34; 在将外部存储装置到设备之前,系统会传送ACTION_BOOT_COMPLETED广播。如果您的应用程序安装在外部存储器上,则它永远不会接收此广播。