我收到了自定義狀態欄通知。它上面有一個「播放」和「下一個」圖像。 我想在按下「播放」或「下一張」圖像時將廣播意圖發送到服務。自定義狀態欄通知
notification = new Notification(R.drawable.ic_launcher, title + "\n"
+ text, System.currentTimeMillis());
contentIntent = PendingIntent.getActivity(context, 0, actionOnClick, 0);
notification.contentIntent = contentIntent;
contentView = new RemoteViews(context.getPackageName(),
R.layout.custom_player_notification);
contentView.setTextViewText(R.id.custom_player_notification_title,
title);
contentView.setTextViewText(R.id.custom_player_notification_text, text);
notification.contentView = contentView;
這是代碼。 ContentView提供了設置「setOnClickPendingIntent」和「setOnClickFillInIntent」的可能性。我如何使用它們發送此廣播? 我想發送廣播,因爲我不想發起活動。
先生,你能不能把重點放在這個問題上? http://stackoverflow.com/questions/27169367/android-update-specific-notification-from-multiple-notifications-which-have-rem 我會提供更多的信息,如果你想。 – 2014-11-28 07:43:18