Is it possible to send whatsApp message without opening the app, to be sent in the background like sending SMS using:
smsManager.sendTextMessage("+12546304580", null, "Test Message", null, null);
if so how? The code that I tried opens the APP (WITH INTENT):
Intent waIntent = new Intent(Intent.ACTION_SEND);
waIntent.setType("text/plain");
String text = "Test Message";
waIntent.setPackage("com.whatsapp");
waIntent.putExtra(Intent.EXTRA_TEXT, text);//
startActivity(Intent.createChooser(waIntent, "Share with"));
Or is it possible open the app send message to given address and close it?
Thanks!
I don't believe there exists any such way, else others would have been using it already as it is one of the most desired functionality. SMS and WhatsApp are way different. SMS are build deep into the system.
However if you wish to automate texts through WhatsAap, it can be done through other methods that don't really involve coding. Sorry I am not allowed to comment n question yet, so I have written this as an answer.
No, it's not possible since Whatsapp dont offer ContentProviders and wont in future.
It is possible re-disassembling and implementing the protocol which is based on jabber.
You will need to handle the handshake etc.
Anyway, it's not possible, not even with root if you dont want to assemble the whole networking stuff.
Because of your second Question (Capturing Whatsapp Messages and closing the app for example):
You will need an Accesibility Service which capture all incoming events on the given package. EXample here:
and the parsing method.
You can now parse on the raw message for a message and do whatever you want.
Do not forget to register the accesibilityService in your manifest and let the user enable it.
and your xml/accesibilityservice.xml file should contain whatever you want to enable for your accesibilityservice.
And do not forget to let the user activate it. You can get the user directly to the setting by calling
I believe this is possible as the 3rd party Android Wear app, Quick for Wear let's you send Whatsapp, Messenger, Gmail, etc. messages directly from the watch.