相关疑难解决方法(0)

Android - 通知管理器,没有意图的通知

我希望能够发出通知以提醒用户有关已完成的计时器,但是当您单击通知时我不希望有意图.

我试过传入null的意图

String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(ns);

int icon = R.drawable.icon;
CharSequence tickerText = "Hello";
long when = System.currentTimeMillis();

Notification notification = new Notification(icon, tickerText, when);

CharSequence contentTitle = "My notification";
CharSequence contentText = "Hello World!";

notification.setLatestEventInfo(context, contentTitle, contentText, null);
mNotificationManager.notify(HELLO_ID, notification);
Run Code Online (Sandbox Code Playgroud)

notifications android android-intent notificationmanager

37
推荐指数
2
解决办法
3万
查看次数