小编Man*_*j j的帖子

whatsapp消息的自动回复方法

我在Play Store上看到支持WhatsApp自动回复的应用程序很少,我在互联网上搜索了方法,但我发现的只是这段代码

    Uri uri = Uri.parse("smsto:" + "99********");
    Intent i = new Intent(Intent.ACTION_SENDTO, uri);
    i.putExtra("sms_body", "Hey!");
    i.setPackage("com.whatsapp");
    startActivity(i);
Run Code Online (Sandbox Code Playgroud)

如果您已保存,它将打开 WhatsApp 并带您到该特定联系人,它会粘贴给定的文本,但不会发送消息。

链接

https://play.google.com/store/apps/details?id=horizo​​ntstack.autoreplyforwhatsapp.whatsreply

他们正在访问通知以获取消息。我想知道他们如何在不打开应用程序的情况下在后台发送消息。如果有人知道该方法,请在此处分享。

android android-notifications whatsapp

3
推荐指数
1
解决办法
7090
查看次数

标签 统计

android ×1

android-notifications ×1

whatsapp ×1