mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-04 16:25:06 -05:00
show reply action on wear devices
This commit is contained in:
parent
1dc55f72e3
commit
7e81149869
@ -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(
|
||||
|
Loading…
Reference in New Issue
Block a user