如何让.addAction做点什么

时间:2017-10-03 06:24:58

标签: java android android-notifications

之前可能已经提出这个问题,但我仍然不确定该怎么做。我是android studio的新手并且通常创建一个应用程序因此所有术语对我来说都是陌生的。当我点击暂停或点击停止时,不知道该去哪里。我应该为打盹做一个功能吗?如果是这样,我该如何将其绑定回addAction函数?

while on the edit page where

1 个答案:

答案 0 :(得分:0)

你快到了。您已设置调用main PendingIntent的操作,您要做的是实际构建此通知并注册它。来自官方的android文档https://developer.android.com/training/notify-user/build-notification.html 它还有待写:

// Sets an ID for the notification
int mNotificationId = 001;
// Gets an instance of the NotificationManager service
NotificationManager mNotifyMgr =
        (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
// Builds the notification and issues it.
mNotifyMgr.notify(mNotificationId, notif.build());