我有一个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
。
编辑:
设备无法唤醒。屏幕保持关闭状态。
答案 0 :(得分:1)
对我来说唯一可行的解决方案是在调用PowerManager.SCREEN_BRIGHT_WAKE_LOCK
时使用破旧的onNewIntent()
。
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
。
答案 1 :(得分:0)
OnNewIntent()
始终会调用singleTop/Task
个活动。那时调用onCreate
。
您可以通过将onNewIntent
方法添加到onCreate
方法中来调用@Override
public void onCreate(Bundle savedState)
{
super.onCreate(savedState);
onNewIntent(getIntent());
}
@Override
protected void onNewIntent(Intent intent)
{
super.onNewIntent(intent);
//code
}
,如下所示:
onNewIntent()
而且,您的活动已经过了恢复生命周期。如果该行为恢复,他们可以简单地拨打i=0
for f in A/*/; do
echo "$((++i)) $f"
done
并保持恢复。