หากคุณใช้ "Google Cloud Message" เพื่อรับการแจ้งเตือนแบบพุชด้วยคลาส "PendingIntent" รหัสต่อไปนี้จะแสดงการแจ้งเตือนในแถบการทำงานเท่านั้น
เมื่อคลิกที่การแจ้งเตือนจะไม่มีการสร้างกิจกรรมกิจกรรมที่ใช้งานล่าสุดจะถูกเรียกคืนโดยรักษาสถานะปัจจุบันโดยไม่มีปัญหา
Intent notificationIntent = new Intent(this, ActBase.class);
**notificationIntent.setAction(Intent.ACTION_MAIN);
notificationIntent.addCategory(Intent.CATEGORY_LAUNCHER);**
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("Localtaxi")
.setVibrate(vibrate)
.setStyle(new NotificationCompat.BigTextStyle().bigText(msg))
.setAutoCancel(true)
.setOnlyAlertOnce(true)
.setContentText(msg);
mBuilder.setContentIntent(contentIntent);
NotificationManager mNotificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
เชี่ยว!