我应该创建一个通知之前调用激活锁定?(Should I call WakeLock before c

2019-08-31 21:55发布

我添加通知Android应用程序,只有具有模拟器的时刻来测试。 当收到通知时,我的onMessage()在我的GCMBaseIntentService子类(GCMIntentService)方法被调用。 在这里,我创建一个通知出现。 如果我把仿真器上待命,没有通知可以被看到(我不知道它是否会在设备上听说过吗?)。 所以我应该打电话激活锁定在创建通知之前唤醒设备?

谢谢

Answer 1:

我不知道,如果仿真器处于待机是等同于锁定装置。 如果是这样,你一定要叫唤醒锁定,以便通知,即使设备处于锁定状态出现。

下面是示例代码:

@Override
protected void onMessage(Context context, Intent intent) {
    // Extract the payload from the message
    Bundle extras = intent.getExtras();
    if (extras != null) {
        String message = (String) extras.get("payload");
        String title = (String) extras.get("title");

        // add a notification to status bar
        NotificationManager mManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        Intent myIntent = new Intent(this,MyActivity.class);
        Notification notification = new Notification(R.drawable.coupon_notification, title, System.currentTimeMillis());
        notification.flags |= Notification.FLAG_AUTO_CANCEL;
        RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.notification);
        contentView.setImageViewResource(R.id.image, R.drawable.gcm_notification);
        contentView.setTextViewText(R.id.title, title);
        contentView.setTextViewText(R.id.text, message);
        notification.contentView = contentView;
        notification.contentIntent = PendingIntent.getActivity(this.getBaseContext(), 0, myIntent, PendingIntent.FLAG_CANCEL_CURRENT);
        mManager.notify(0, notification);
        PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
        WakeLock wl = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK | PowerManager.ACQUIRE_CAUSES_WAKEUP, "TAG");
        wl.acquire(15000);
    }
}

当然,你需要这个权限添加到您的清单:

<uses-permission android:name="android.permission.WAKE_LOCK" />


文章来源: Should I call WakeLock before creating a notification?