应用程序关闭后保持广播接收器运行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了应用程序关闭后保持广播接收器运行相关的知识,希望对你有一定的参考价值。
应用程序启动后,我需要让广播接收器一直运行。
这是在应用程序中注册此接收器的代码
IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_ON);
filter.addAction(Intent.ACTION_SCREEN_OFF);
BroadcastReceiver mReceiver = new ScreenEventsReceiver();
registerReceiver(mReceiver, filter);
和接收器的代码
public class ScreenEventsReceiver extends BroadcastReceiver {
public static boolean wasScreenOn = true;
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)) {
wasScreenOn = false;
Log.d("ScreenEventReceiver", "ON");
} else if (intent.getAction().equals(Intent.ACTION_SCREEN_ON)) {
wasScreenOn = true;
Log.d("ScreenEventReceiver", "ON");
}
}
}
您可以使用服务
在主应用程序启动/停止服务
Intent service = new Intent(context, MyService.class);
context.startService(service);
...
Intent service = new Intent(context, MyService.class);
context.stopService(service);
服务
public class MyService extends Service
{
private static BroadcastReceiver m_ScreenOffReceiver;
@Override
public IBinder onBind(Intent arg0)
{
return null;
}
@Override
public void onCreate()
{
registerScreenOffReceiver();
}
@Override
public void onDestroy()
{
unregisterReceiver(m_ScreenOffReceiver);
m_ScreenOffReceiver = null;
}
private void registerScreenOffReceiver()
{
m_ScreenOffReceiver = new BroadcastReceiver()
{
@Override
public void onReceive(Context context, Intent intent)
{
Log.d(TAG, "ACTION_SCREEN_OFF");
// do something, e.g. send Intent to main app
}
};
IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_OFF);
registerReceiver(m_ScreenOffReceiver, filter);
}
}
我认为接受的答案不是一个真正的答案。我会解释一下这个问题。我想你正在Huawie,Oppo,Vivo,Xiomi,asus .......或某些设备上测试你的应用程序。如果我们关闭应用程序,他们也会关闭我们的广播接收器。这就是问题所在。(要检查是否使用像素nexus仿真器)。我将解释如何解决这个问题
- 我们会将我们的应用添加到受保护的应用列表中。操作系统只允许他们继续广播接收器活动。(将此数组声明复制到您的代码中)
private static final Intent[] POWERMANAGER_INTENTS = { new Intent().setComponent(new ComponentName("com.miui.securitycenter", "com.miui.permcenter.autostart.AutoStartManagementActivity")), new Intent().setComponent(new ComponentName("com.letv.android.letvsafe", "com.letv.android.letvsafe.AutobootManageActivity")), new Intent().setComponent(new ComponentName("com.huawei.systemmanager", "com.huawei.systemmanager.optimize.process.ProtectActivity")), new Intent().setComponent(new ComponentName("com.huawei.systemmanager", "com.huawei.systemmanager.appcontrol.activity.StartupAppControlActivity")), new Intent().setComponent(new ComponentName("com.coloros.safecenter", "com.coloros.safecenter.permission.startup.StartupAppListActivity")), new Intent().setComponent(new ComponentName("com.coloros.safecenter", "com.coloros.safecenter.startupapp.StartupAppListActivity")), new Intent().setComponent(new ComponentName("com.oppo.safe", "com.oppo.safe.permission.startup.StartupAppListActivity")), new Intent().setComponent(new ComponentName("com.iqoo.secure", "com.iqoo.secure.ui.phoneoptimize.AddWhiteListActivity")), new Intent().setComponent(new ComponentName("com.iqoo.secure", "com.iqoo.secure.ui.phoneoptimize.BgStartUpManager")), new Intent().setComponent(new ComponentName("com.vivo.permissionmanager", "com.vivo.permissionmanager.activity.BgStartUpManagerActivity")), new Intent().setComponent(new ComponentName("com.samsung.android.lool", "com.samsung.android.sm.ui.battery.BatteryActivity")), new Intent().setComponent(new ComponentName("com.htc.pitroad", "com.htc.pitroad.landingpage.activity.LandingPageActivity")), new Intent().setComponent(new ComponentName("com.asus.mobilemanager", "com.asus.mobilemanager.MainActivity"))};
- 将这些代码放入onCreate方法。在这里,我使用共享首选项仅在应用程序第一次打开时进行检查。
final SharedPreferences.Editor pref = getSharedPreferences("allow_notify", MODE_PRIVATE).edit(); pref.apply(); final SharedPreferences sp = getSharedPreferences("allow_notify", MODE_PRIVATE)
;
if(!sp.getBoolean("protected",false)) {
for (final Intent intent : POWERMANAGER_INTENTS)
if (getPackageManager().resolveActivity(intent, PackageManager.MATCH_DEFAULT_ONLY) != null) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Alert Title").setMessage("Alert Body")
.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
startActivity(intent);
sp.edit().putBoolean("protected",true).apply();
}
})
.setCancelable(false)
.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
})
.create().show();
break;
如果在Manifest中声明BroadcastReceiver
,它将始终处于活动状态并且即使应用程序已关闭/停止也会被调用
如果您使用的是Android 4.4.x,请小心,因为在关闭应用程序时会出现一个杀死后台服务的错误。我在Android 4.4.2中测试我的应用程序,我遇到了同样的问题。这里有一个详细的解释:
您可以启动在前台运行的服务。这是确保(大部分)您的应用程序将获得事件的唯一方法。在操作系统出现内存压力的情况下,您的前台服务仍有可能被杀死(因此并非万无一失)。如果您在前台启动服务,用户将看到持久通知,知道它始终在运行。
所以故事的寓意是,你真的需要一直监视屏幕的开/关事件吗?他们强迫您注册不在清单中的接收器的原因是他们不希望人们总是监视这些事件并减慢设备速度。你想达到什么目的?
您无法通过清单中声明的组件接收某些广播事件。
这些事件是
- ACTION_BATTERY_CHANGED
- ACTION_CONFIGURATION_CHANGED
- ACTION_SCREEN_OFF(你正在玩这个事件)
- ACTION_SCREEN_ON(你正在玩这个事件)
- ACTION_TIME_TICK
参考https://developer.android.com/reference/android/content/Intent.html#ACTION_SCREEN_ON
因此,在您的特定事件中,您必须创建一个服务,您必须使用Context.registerReceiver()在服务onCreate()中显式注册您的事件。
对于其他事件,清单中的条目就足够了。
以上是关于应用程序关闭后保持广播接收器运行的主要内容,如果未能解决你的问题,请参考以下文章