我有一个应该启动活动的BroadcastReceiver
:
@Override
public void onReceive(Context context, Intent intent)
{
if (wakeLock == null)
{
PowerManager pm = (PowerManager) ApplicationScreen.instance.getApplicationContext()
.getSystemService(Context.POWER_SERVICE);
wakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, TAG);
}
if (!wakeLock.isHeld())
{
wakeLock.acquire();
}
try
{
if (ApplicationScreen.instance != null) {
Intent dialogIntent = new Intent(context, MainScreen.class);
dialogIntent.addFlags(Intent.FLAG_FROM_BACKGROUND | Intent.FLAG_ACTIVITY_REORDER_TO_FRONT | Intent.FLAG_ACTIVITY_SINGLE_TOP);
ApplicationScreen.instance.startActivity(dialogIntent);
} else {
Intent dialogIntent = new Intent(context, MainScreen.class);
dialogIntent.addFlags(Intent.FLAG_FROM_BACKGROUND | Intent.FLAG_ACTIVITY_REORDER_TO_FRONT | Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);
context.startActivity(dialogIntent);
}
} catch (NullPointerException e)
{
}
}
我MainScreen
是:
@Override
public void onResume()
{
Log.e("TAG", "onResume");
super.onResume();
}
@Override
protected void onNewIntent(Intent intent)
{
super.onNewIntent(intent);
// getIntent() should always return the most recent
setIntent(intent);
Log.e("TAG", "onNewIntent");
}
onResume
在onNewIntent
之后永远不会被调用。我希望,如果设备进入睡眠状态,我的BroadcastReceiver
应该唤醒它并启动我的MainScreen
。 还应该告诉,MainScreen
扩展ApplicationScreen
.ApplicationScreen
扩展Activity
.
编辑:
设备无法唤醒。屏幕保持关闭状态。
对我来说唯一可行的解决方案是在调用onNewIntent()
时使用递减的PowerManager.SCREEN_BRIGHT_WAKE_LOCK
。
int SCREEN_BRIGHT_WAKE_LOCK = 10;
PowerManager lPm = (PowerManager) getSystemService(Context.POWER_SERVICE);
WakeLock lWl = lPm.newWakeLock(SCREEN_BRIGHT_WAKE_LOCK | PowerManager.ACQUIRE_CAUSES_WAKEUP);
lWl.acquire(1000);
如果通过按电源按钮停止活动,这将触发onResume
。然后,您应该使用推荐的WindowManager
标志FLAG_TURN_SCREEN_ON
和FLAG_KEEP_SCREEN_ON
。
除了第一次创建活动外,OnNewIntent()
总是被调用singleTop/Task
活动。那时onCreate
被召唤。
您可以通过将其放入onCreate
方法中来始终调用onNewIntent
,例如:
@Override
public void onCreate(Bundle savedState)
{
super.onCreate(savedState);
onNewIntent(getIntent());
}
@Override
protected void onNewIntent(Intent intent)
{
super.onNewIntent(intent);
//code
}
而且,您的活动已经经历了其生命周期才能恢复。如果恢复行为,他们可以简单地打电话给onNewIntent()
并留在恢复中。