如何实现android线自动回复消息功能? 使用NotificationListenerService接收消息,您现在需要做的是在收到消息时回复信使,并且根本不自动触摸屏幕?
以下是该行的消息文本,您想手动选择要传输的对象。
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setData(Uri.parse("line://msg/text/" + text));
startActivity(intent);
但我想手动向特定的人发送消息。
类似的问题是Automatic reply for whatsapp messages approach,但我打算自动回复换行而不是whatsapp。
此功能上还有其他产品,但可以尝试所有尝试实现我想要的功能的方法.... 这可能吗?