NotificationCompat.Action replyAction = | |
new NotificationCompat.Action.Builder(R.drawable.ic_reply, | |
LABEL_REPLY, replyIntent) | |
.addRemoteInput(remoteInput) | |
.build(); | |
NotificationCompat.Action archiveAction = | |
new NotificationCompat.Action.Builder(R.drawable.ic_archive, | |
LABEL_ARCHIVE, archiveIntent) | |
.build(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment