我创建了一个通知,并带有RemoteInput
的操作,可将注释添加到应用程序的特定条目中,如下所示:
RemoteInput remoteInput = new RemoteInput.Builder("key_add_note")
.setLabel("add note")
.build();
NotificationCompat.Action action =
new NotificationCompat.Action.Builder(R.drawable.ic_action_edit,
"add-note", replyPendingIntent)
.addRemoteInput(remoteInput)
.build();
notification.addAction(action);
这向我显示了执行以下操作ADD-NOTE
的输入字段:
在这里,我不想使用默认的发送图标并希望对其进行更改,以使其适合我的操作。
到目前为止,我没有遇到任何实现这一目标的方法,请告诉我是否可能?以及操作方法。