show reply action on wear devices

This commit is contained in:
Daniel Gultsch 2016-09-06 12:13:50 +02:00
parent 1dc55f72e3
commit 7e81149869
1 changed files with 4 additions and 2 deletions

View File

@ -321,10 +321,12 @@ public class NotificationService {
} else {
modifyForTextOnly(mBuilder, messages);
}
RemoteInput remoteInput = new RemoteInput.Builder("text_reply").setLabel(UIHelper.getMessageHint(mXmppConnectionService, conversation)).build();
NotificationCompat.Action action = new NotificationCompat.Action.Builder(R.drawable.ic_send_text_offline, "Reply", createReplyIntent(conversation)).addRemoteInput(remoteInput).build();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
RemoteInput remoteInput = new RemoteInput.Builder("text_reply").setLabel(UIHelper.getMessageHint(mXmppConnectionService, conversation)).build();
NotificationCompat.Action action = new NotificationCompat.Action.Builder(R.drawable.ic_send_text_offline, "Reply", createReplyIntent(conversation)).addRemoteInput(remoteInput).build();
mBuilder.addAction(action);
} else {
mBuilder.extend(new NotificationCompat.WearableExtender().addAction(action));
}
if ((message = getFirstDownloadableMessage(messages)) != null) {
mBuilder.addAction(