I want to send an intent to whatsapp with a phone number and a predefined message from my Application. Does whatsapp provide such intent service or if not, Is there any workaround?
            Asked
            
        
        
            Active
            
        
            Viewed 560 times
        
    0
            
            
        - 
                    yes you can send text to whatsapp through sharing intents – Raunak Verma May 26 '17 at 13:26
 - 
                    Possible duplicate of [Sending message through WhatsApp](https://stackoverflow.com/questions/15462874/sending-message-through-whatsapp) – JP Ventura May 26 '17 at 13:36
 
1 Answers
0
            
            
        You can find this on official site.
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
sendIntent.setPackage("com.whatsapp");
startActivity(sendIntent);
        Akash Patel
        
- 2,757
 - 1
 - 22
 - 30