主旋律後,即使單擊通知後,刪除的Android棒棒糖通知是發送通知,使用PushNotification可在店內的新的提議使用谷歌雲消息甚至無法使用我的應用程序的AUTOCANCEL
private void sendNotification(Context context, String message) {
SharedPreferences mPrefs = getSharedPreferences("MYAPP", Context.MODE_PRIVATE);
int uniqueNumber = this.getSharedPreferences("MYAPP", Context.MODE_PRIVATE).getInt("uniqueNumber", 0);
Log.d("GCM: GN", "Message: " + message);
uniqueNumber = ++uniqueNumber;
int icon = R.drawable.ic_launcher;
long when = System.currentTimeMillis();
NotificationManager notificationManager = (NotificationManager)
context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(icon, message, when);
String title = context.getString(R.string.app_name);
Intent intent = new Intent(GCMIntentService.this,OpenActivity.class);
intent.putExtra(OpenActivity.EXTRA_KEY, "navigate");
intent.putExtra(OpenActivity.GET_NOTIFY_ID_EXTRA, uniqueNumber);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
notification.setLatestEventInfo(context, title, message, pendingIntent);
notification.flags |= Notification.DEFAULT_LIGHTS|Notification.FLAG_AUTO_CANCEL ;
notification.defaults |= Notification.DEFAULT_SOUND;
notification.defaults |= Notification.DEFAULT_VIBRATE;
notificationManager.notify(uniqueNumber, notification);
SharedPreferences.Editor prefsEditor = mPrefs.edit();
prefsEditor.putInt("uniqueNumber", uniqueNumber);
prefsEditor.commit();
}
用戶
夥計們,這段代碼不適用於棒棒糖。
任何幫助讚賞...
是否有原因,您沒有使用支持庫的[NotificationCompat.Builder](http://developer.android.com/reference/android/support/v4/app/NotificationCompat.Builder.html)甚至[Notification .Builder](http://developer.android.com/reference/android/app/Notification.Builder.html)?您使用的代碼已過時4年。 – ianhanniballake
沒有特別的原因。我以前使用過Notification.Builder,但我得到了同樣的問題。 – saikiran
與我的應用程序中的NotificationCompat.Builder相同的問題。 – saikiran