如何更改直接回复Android上发送按钮的图标

时间:2019-01-14 12:58:39

标签: android remote-input

我创建了一个通知,并带有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);

enter image description here

这向我显示了执行以下操作ADD-NOTE的输入字段:

enter image description here

在这里,我不想使用默认的发送图标并希望对其进行更改,以使其适合我的操作。

到目前为止,我没有遇到任何实现这一目标的方法,请告诉我是否可能?以及操作方法。

0 个答案:

没有答案