4

我创建了一个通知,其中包含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如下操作的输入字段:

在此处输入图像描述

在这里,我不想使用默认的发送图标,而是想更改它以适合我的操作。

到目前为止,我没有遇到任何事情来实现这一点,让我知道是否可能?以及如何去做。

4

0 回答 0