通知を実行しようとすると、何もポップアップしません
private void pushNotification(String user)
{
// TODO Auto-generated method stub
Log.d("Service", "pushNotification");
Notification notification = new Notification.Builder(this)
.setContentTitle("Basic Notification ")
.setContentText("Basic Notification, used earlier").build();
notification.flags |= Notification.FLAG_AUTO_CANCEL;
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
notificationManager.notify(0, notification);
}
- アイコンがないからでしょうか?
- 通知をプッシュするために何か追加する必要がありますか?
- また、通知をクリックしたときにアクティビティを開始したいと考えています。私は何をすべきか?