私はカスタムステータスバー通知を受け取りました。そこには "再生"と "次の"画像があります。 「再生」または「次の」画像が押されたときに、サービスにブロードキャストインテントを送信したいとします。カスタムステータスバー通知
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 必要に応じて詳細情報を提供します。 –