Android onResume在onNewIntent之后未调用



我有一个应该启动活动的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");
}

onResumeonNewIntent之后永远不会被调用。我希望,如果设备进入睡眠状态,我的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_ONFLAG_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()并留在恢复中。

相关内容

  • 没有找到相关文章

最新更新