屏幕关闭时如何打开应用程序

时间:2018-10-23 07:29:38

标签: android android-intent wakelock android-wake-lock

我想在收到推送通知时打开我的应用程序。现在,当收到推送时,应用程序无法打开。这是我正在使用的代码,

为清单类似

添加了WAKE_LOCK权限
<uses-permission android:name="android.permission.WAKE_LOCK" />

这是我打开应用程序的代码,

 Intent intent = new Intent(this, HomeActivity.class);
 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
 intent.putExtra(Constants.NewOrderRequest, true);
 startActivity(intent);

2 个答案:

答案 0 :(得分:1)

使用它来触发服务中的活动

Intent inte = new Intent(context, Activity.class);


                    inte.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                    inte.addCategory(intent.CATEGORY_LAUNCHER);
                    context.startActivity(inte);

并将其放在活动中的onCreate

   Window window=this.getWindow();
        window.addFlags(WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON);
        window.addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
        window.addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD);

答案 1 :(得分:0)

希望这可以为您提供帮助。但是您必须在“服务”中这样做。

private ScreenObserver screenObserver;
public void onCreate() {
    IntentFilter filter = new IntentFilter();
    filter.addAction(Intent.ACTION_SCREEN_OFF);
    filter.addAction(Intent.ACTION_SCREEN_ON);
    screenObserver = new ScreenObserver();

    registerReceiver(screenObserver, filter);
}
private class ScreenObserver extends BroadcastReceiver {

        @Override
        public void onReceive(Context context, Intent intent) {
            if (intent.getAction().equals(Intent.ACTION_SCREEN_ON)) {
                if (isDebug) Log.d(TAG, "ScreenON");
                Intent intent = new Intent(this, HomeActivity.class);
                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                intent.putExtra(Constants.NewOrderRequest, true);
                startActivity(intent);
            }
            if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)) {
                if (isDebug) Log.d(TAG, "ScreenOFF");
            }
        }
    }