17

我的应用程序正在使用NotificationListener读取来自各种 3rd 方应用程序的消息,例如 WhatsApp。

到目前为止,如果只有一个聊天未读,我能够发送回复,代码如下。

但是,在 WhatsApp 的情况下,getNotification().actions当两个以上的聊天未读时返回一个空对象,因为消息是捆绑在一起的。如下图所示,如果通知被扩展,也可以选择发送直接回复,因此我确定可以使用此方法,而且我认为像 PushBullet 之类的应用程序正在使用这种方法。

我如何访问该通知的 RemoteInput?

public static ReplyIntentSender sendReply(StatusBarNotification statusBarNotification, String name) {

            Notification.Action actions[] = statusBarNotification.getNotification().actions;

            for (Notification.Action act : actions) {
                if (act != null && act.getRemoteInputs() != null) {
                    if (act.title.toString().contains(name)) {
                        if (act.getRemoteInputs() != null)
                            return new ReplyIntentSender(act);
                    }
                }
            }
            return null;
        }



public static class ReplyIntentSender {
      [...]

    public final Notification.Action action;

    public ReplyIntentSender(Notification.Action extractedAction) {
            action = extractedAction;
     [...]
    }

private boolean sendNativeIntent(Context context, String message) {
            for (android.app.RemoteInput rem : action.getRemoteInputs()) {
                Intent intent = new Intent();
                Bundle bundle = new Bundle();
                bundle.putCharSequence(rem.getResultKey(), message);
                android.app.RemoteInput.addResultsToIntent(action.getRemoteInputs(), intent, bundle);
                try {
                    action.actionIntent.send(context, 0, intent);
                } catch (Exception e) {
                    e.printStackTrace();
                    return false;
                }
                return true;
            }
            return false;
        }
    }

上面代码如何工作的一些解释:一旦收到通知,应用程序就会尝试获取操作并检查名称是否在 remoteInput 的标题中(通常是“回复 $NAME”的格式),如果是发现Action被保存到ReplyIntentSender类中,当被触发时sendNativeIntent,循环遍历该Action的所有RemoteInputs并将消息添加到intent中。如果多个聊天未读,则getNotification().actions返回 null。

下面是两个屏幕截图,第一个可以正常工作,第二个没有问题。

我可以回复此消息

我无法回复此消息

4

1 回答 1

1

你可以把这当作我的建议。我对此进行了一些研究并得出以下结论。(而且看起来您已经对此进行了大量研究,因此您可能知道我在下面写的内容)

许多应用程序会发送特定于 Wear 的通知,其中许多包含可从 Android Wear 设备访问的操作。我们可以在设备上抓取这些 Wear 通知,提取操作,找到回复操作(如果存在),用我们自己的响应填充它,然后执行PendingIntent将我们的响应发送回原始应用程序以发送给接收者.

为此,您可以参考此链接(Rob J 的一个不错的解决方法)。您也可以在此上下文中参考此链接(Michał Tajchert 完成的出色研究工作)。(您可能需要使用NotificationCompat.isGroupSummary

这就是我的感受(可能我完全错了)

.actions方法返回由addAction(int, CharSequence, PendingIntent) 附加到当前通知的所有Notification.Action结构的数组,这里不推荐使用 addAction 方法,因此它可能无法按预期工作。

我最终无法对此进行测试,否则我很乐意提供一个带有代码的工作解决方案。

希望这会帮助你。快乐编码!!!

于 2016-11-13T18:10:25.757 回答