【发布时间】:2017-02-03 14:24:26
【问题描述】:
我需要使用带有点击事件的通知,我有通知方法,但此方法不会打开我的活动。
我的代码:
private void sendNotification(String msg) {
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this)
.setContentTitle("EXX")
.setSmallIcon(R.drawable.ic_launcher)
.setStyle(new NotificationCompat.BigTextStyle()
.bigText(msg))
.setContentText(msg)
.setOngoing(true);
mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
}
这可能吗,
谢谢。
【问题讨论】:
-
不是重复的。 OP 只是缺少
setContentIntent()
标签: java android android-notifications android-notification-bar