I wanted to know how I can send text to a specific whatsapp contact. I found some code to view a specific contact, but not to send data.

Cursor c = getContentResolver().query(ContactsContract.Data.CONTENT_URI,     new String[] { ContactsContract.Contacts.Data._ID }, ContactsContract.Data.DATA1 + "=?",     new String[] { id }, null); c.moveToFirst(); Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("content://com.android.contacts/data/" + c.getString(0))); startActivity(i); c.close(); 

This works fine for viewing a whatsapp-contact, but how can I add some text now? Or didn't the Whatsapp-developer implement such kind of an api?

Tag:android, whatsapp, android-intent, contacts

64 comments.

  1. Crono

    I've found the right way to do this:

    Source code: phone and message are both String.

    PackageManager packageManager = context.getPackageManager(); Intent i = new Intent(Intent.ACTION_VIEW); try { String url = "https://api.whatsapp.com/send?phone="+ phone +"&text=" + URLEncoder.encode(message, "UTF-8"); i.setPackage("com.whatsapp"); i.setData(Uri.parse(url)); if (i.resolveActivity(packageManager) != null) { context.startActivity(i); } } catch (Exception e){ e.printStackTrace(); }

    Enjoy yourself!

    1. Pablo Quemé

      This one is the one, most upvoted did not work if the contact was not previously added to the phone.

    2. suv

      Not sending the text, just opens the chat with the message but its not sending the text.

    3. Prateek Gupta

      u saved me, u god!!

    4. MontDeska

      As @PabloQuemé says, if you don't have the contact previously added, there is a call out that says that you don't have this contact. So I was sending just de phone number, but as soon as I added the complete number with the Country Code this worked nice!

    5. Pratik Tank

      add country code before number e.g. +91, +1, +44 etc will open that person's chat screen.

  2. Community

    I think the answer is a mix of your question and this answer here: https://stackoverflow.com/a/15931345/734687 So I would try the following code:

    change ACTION_VIEW to ACTION_SENDTO set the Uri as you did set the package to whatsapp Intent i = new Intent(Intent.ACTION_SENDTO, Uri.parse("content://com.android.contacts/data/" + c.getString(0))); i.setType("text/plain"); i.setPackage("com.whatsapp"); // so that only Whatsapp reacts and not the chooser i.putExtra(Intent.EXTRA_SUBJECT, "Subject"); i.putExtra(Intent.EXTRA_TEXT, "I'm the body."); startActivity(i);

    I looked into the Whatsapp manifest and saw that ACTION_SEND is registered to the activity ContactPicker, so that will not help you. However ACTION_SENDTO is registered to the activity com.whatsapp.Conversation which sounds more adequate for your problem.

    Whatsapp can work as a replacement for sending SMS, so it should work like SMS. When you do not specify the desired application (via setPackage) Android displays the application picker. Thererfor you should just look at the code for sending SMS via intent and then provide the additional package information.

    Uri uri = Uri.parse("smsto:" + smsNumber); Intent i = new Intent(Intent.ACTION_SENDTO, uri); i.putExtra("sms_body", smsText); i.setPackage("com.whatsapp"); startActivity(i);

    First try just to replace the intent ACTION_SEND to ACTION_SENDTO . If this does not work than provide the additional extra sms_body. If this does not work than try to change the uri.

    Update I tried to solve this myself and was not able to find a solution. Whatsapp is opening the chat history, but doesn't take the text and send it. It seems that this functionality is just not implemented.

    1. Manuel Allenspach

      Only opens the contact, but no text passed to Whatsapp... Seems like Whatsapp doesn't recognise those extras (or doesn't want).

    2. Manuel Allenspach

      Seems like Whatsapp blocked this way... Thank you for your help

    3. Roel

      What if you want a chooser? If I add i.setPackage("com.whatsapp") it starts Whatsapp but when i don't add it it starts the sms app (hangouts in my case).

    4. android developer

      It tells me the phone number doesn't have WhatsApp, even though it has. Is there a way I should format it first?

    5. Crono

      Please read my answer to this question, it works without having it in your contact list. Works perfectly.

  3. CristinaTheDev

    I have done it!

    private void openWhatsApp() { String smsNumber = "7****"; // E164 format without '+' sign Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.setType("text/plain"); sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send."); sendIntent.putExtra("jid", smsNumber + "@s.whatsapp.net"); //phone number without "+" prefix sendIntent.setPackage("com.whatsapp"); if (intent.resolveActivity(getActivity().getPackageManager()) == null) { Toast.makeText(this, "Error/n" + e.toString(), Toast.LENGTH_SHORT).show(); return; } startActivity(sendIntent); }
    1. Sarthak Majithia

      I was sceptical of your solution because it did not have many upvotes. but it works!

    2. Amandeep Rohila

      It open particular contact number with particular chat text but not send it, user have to press send button for send message. +1 Up-vote for open particular activity.

    3. Agustin Scalisi

      works, but the phone number should be added to the device Contact List

    4. Vova

      This one actually works! Would have been also nice to find a way to use the app chooser and still include both message text and phone number so that the user can choose both SMS and Whatsapp options... Anyone?

    5. Raj

      This is working. Great. Thanks for the answer. The PROBLEM is, if the contact is not saved, it is not working. Can you do something to this?

  4. Pioneer

    This approach works with WhatsApp Business app as well!

    Change package name as sendIntent.setPackage("com.whatsapp.w4b"); for WhatsApp Business.

    Great hack Rishabh, thanks a lot, I was looking for this solution since last 3 years.

    As per the Rishabh Maurya's answer above, I have implemented this code which is working fine for both text and image sharing on WhatsApp.

    Note that in both the cases it opens a whatsapp conversation (if toNumber exists in users whatsapp contact list), but user have to click send button to complete the action. That means it helps in skipping contact selection step.

    For text messages

    String toNumber = "+91 98765 43210"; // contains spaces. toNumber = toNumber.replace("+", "").replace(" ", ""); Intent sendIntent = new Intent("android.intent.action.MAIN"); sendIntent.putExtra("jid", toNumber + "@s.whatsapp.net"); sendIntent.putExtra(Intent.EXTRA_TEXT, message); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.setPackage("com.whatsapp"); sendIntent.setType("text/plain"); startActivity(sendIntent);

    For sharing images

    String toNumber = "+91 98765 43210"; // contains spaces. toNumber = toNumber.replace("+", "").replace(" ", ""); Intent sendIntent = new Intent("android.intent.action.MAIN"); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(imageFile)); sendIntent.putExtra("jid", toNumber + "@s.whatsapp.net"); sendIntent.putExtra(Intent.EXTRA_TEXT, message); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.setPackage("com.whatsapp"); sendIntent.setType("image/png"); context.startActivity(sendIntent);

    Enjoy WhatsApping!

    1. Mayank Pandya

      not working for me. It is opening contact selection screen.

    2. Pioneer

      @DeepakPandit check our app play.google.com/store/apps/details?id=com.wiwonders.billbook which is having share image working in it.

    3. Abhi

      opening specific contact with the blank message.

    4. Attaullah

      For more then one number what will i do?

    5. Jesus Almaral - Hackaprende

      This only opens whatsapp but it does not repond automatically

  5. Rishabh Maurya

    Check out my answer : https://stackoverflow.com/a/40285262/5879376

    Intent sendIntent = new Intent("android.intent.action.MAIN"); sendIntent.setComponent(new ComponentName("com.whatsapp","com.whatsapp.Conversation")); sendIntent.putExtra("jid", PhoneNumberUtils.stripSeparators("YOUR_PHONE_NUMBER")+"@s.whatsapp.net");//phone number without "+" prefix startActivity(sendIntent);

    Update:

    The aforementioned hack cannot be used to add any particular message, so here is the new approach. Pass the user mobile in international format here without any brackets, dashes or plus sign. Example: If the user is of India and his mobile number is 94xxxxxxxx , then international format will be 9194xxxxxxxx. Don't miss appending country code as a prefix in mobile number.

    private fun sendMsg(mobile: String, msg: String){ try { val packageManager = requireContext().packageManager val i = Intent(Intent.ACTION_VIEW) val url = "https://wa.me/$mobile" + "?text=" + URLEncoder.encode(msg, "utf-8") i.setPackage("com.whatsapp") i.data = Uri.parse(url) if (i.resolveActivity(packageManager) != null) { requireContext().startActivity(i) } } catch (e: Exception) { e.printStackTrace() } }

    Note: This approach works only with contacts added in user's Whatsapp account.

    1. AMI CHARADAVA

      You should use "com.whatsapp.ContactPicker" in place of "com.whatsapp.Conversation".

    2. Darshan Miskin

      @RishabhMaurya How to also include a bitmap with this?

  6. Kiran Benny Joseph

    Whatsapp have its own API

    Intent sendIntent = new Intent("android.intent.action.MAIN"); sendIntent.setAction(Intent.ACTION_VIEW); sendIntent.setPackage("com.whatsapp"); String url = "https://api.whatsapp.com/send?phone=" + "Phone with international format" + "&text=" + "your message"; sendIntent.setData(Uri.parse(url)); if(sendIntent.resolveActivity(context.getPackageManager()) != null){ startActivity(sendIntent); }

    Code updated check added for Activity is available or not.

    See this documentation

    1. Codelicious

      Working for me on whatsapp version 2.18.380

    2. kiumars gilanizadeh

      working fine for me

  7. kenny_k

    This will first search for the specified contact and then open a chat window. And if WhatsApp is not installed then try-catch block handle this.

    String digits = "\\d+"; String mob_num = "987654321"; if (mob_num.matches(digits)) { try { //linking for whatsapp Uri uri = Uri.parse("whatsapp://send?phone=+91" + mob_num); Intent i = new Intent(Intent.ACTION_VIEW, uri); startActivity(i); } catch (ActivityNotFoundException e){ e.printStackTrace(); //if you're in anonymous class pass context like "YourActivity.this" Toast.makeText(this, "WhatsApp not installed.", Toast.LENGTH_SHORT).show(); } }
  8. Ramesh kumar

    Here am trying to send a text message in WhatsApp with another application.

    Assume that we have a button, on button click ur calling below method.

    sendTextMsgOnWhatsApp("+91 9876543210", "Hello, this my test message");

    public void sendTextMsgOnWhatsApp(String sContactNo, String sMessage) { String toNumber = sContactNo; // contains spaces, i.e., example +91 98765 43210 toNumber = toNumber.replace("+", "").replace(" ", ""); /*this method contactIdByPhoneNumber() will get unique id for given contact, if this return's null then it means that you don't have any contact save with this mobile no.*/ String sContactId = contactIdByPhoneNumber(toNumber); if (sContactId != null && sContactId.length() > 0) { /* * Once We get the contact id, we check whether contact has a registered with WhatsApp or not. * this hasWhatsApp(hasWhatsApp) method will return null, * if contact doesn't associate with whatsApp services. * */ String sWhatsAppNo = hasWhatsApp(sContactId); if (sWhatsAppNo != null && sWhatsAppNo.length() > 0) { Intent sendIntent = new Intent("android.intent.action.MAIN"); sendIntent.putExtra("jid", toNumber + "@s.whatsapp.net"); sendIntent.putExtra(Intent.EXTRA_TEXT, sMessage); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.setPackage("com.whatsapp"); sendIntent.setType("text/plain"); startActivity(sendIntent); } else { // this contact does not exist in any WhatsApp application Toast.makeText(this, "Contact not found in WhatsApp !!", Toast.LENGTH_SHORT).show(); } } else { // this contact does not exist in your contact Toast.makeText(this, "create contact for " + toNumber, Toast.LENGTH_SHORT).show(); } } private String contactIdByPhoneNumber(String phoneNumber) { String contactId = null; if (phoneNumber != null && phoneNumber.length() > 0) { ContentResolver contentResolver = getContentResolver(); Uri uri = Uri.withAppendedPath(ContactsContract.PhoneLookup.CONTENT_FILTER_URI, Uri.encode(phoneNumber)); String[] projection = new String[]{ContactsContract.PhoneLookup._ID}; Cursor cursor = contentResolver.query(uri, projection, null, null, null); if (cursor != null) { while (cursor.moveToNext()) { contactId = cursor.getString(cursor.getColumnIndexOrThrow(ContactsContract.PhoneLookup._ID)); } cursor.close(); } } return contactId; } public String hasWhatsApp(String contactID) { String rowContactId = null; boolean hasWhatsApp; String[] projection = new String[]{ContactsContract.RawContacts._ID}; String selection = ContactsContract.RawContacts.CONTACT_ID + " = ? AND " + ContactsContract.RawContacts.ACCOUNT_TYPE + " = ?"; String[] selectionArgs = new String[]{contactID, "com.whatsapp"}; Cursor cursor = getContentResolver().query(ContactsContract.RawContacts.CONTENT_URI, projection, selection, selectionArgs, null); if (cursor != null) { hasWhatsApp = cursor.moveToNext(); if (hasWhatsApp) { rowContactId = cursor.getString(0); } cursor.close(); } return rowContactId; }

    Add this below permission in AndroidManifest.xml file

    <uses-permission android:name="android.permission.READ_CONTACTS" /> <uses-permission android:name="android.permission.WRITE_CONTACTS" /> <uses-permission android:name="android.permission.INTERNET" />
    1. mDonmez

      This work, no need for contact id, or check whatsapp for me, i could send directly to number.

    2. Ramesh kumar

      great this helped you, actually this the best way to proceed, you can ignore, which ever part of logic is not required in your case.

  9. Shekhar Saini
    try { String text = "Hello, Admin sir";// Replace with your message. String toNumber = "xxxxxxxxxxxx"; // Replace with mobile phone number without +Sign or leading zeros, but with country code //Suppose your country is India and your phone number is “xxxxxxxxxx”, then you need to send “91xxxxxxxxxx”. Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("http://api.whatsapp.com/send?phone=" + toNumber + "&text=" + text)); context.startActivity(intent); } catch (Exception e) { e.printStackTrace(); context.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id=com.whatsapp"))); }
  10. רותם ריכטר

    This is the shortest way

    String mPhoneNumber = "+972505555555"; mPhoneNumber = mPhoneNumber.replaceAll("+", "").replaceAll(" ", "").replaceAll("-",""); String mMessage = "Hello world"; String mSendToWhatsApp = "https://wa.me/" + mPhoneNumber + "?text="+mMessage; startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse( mSendToWhatsApp )));

    See also the documentation of WhatsApp

  11. Roshan M

    you can also select WhatsApp business vs WhatsApp

    String url = "https://api.whatsapp.com/send?phone=" + phoneNumber + "&text=" + URLEncoder.encode(messageText, "UTF-8"); if(useWhatsAppBusiness){ intent.setPackage("com.whatsapp.w4b"); } else { intent.setPackage("com.whatsapp"); } URLEncoder.encode(messageText, "UTF-8"); intent.setData(Uri.parse(url)); if (intent.resolveActivity(packageManager) != null) { startActivity(intent); } else { Toast.makeText(this, "WhatsApp application not found", Toast.LENGTH_SHORT).show(); }
    1. Saurabh Gaddelpalliwar

      How to find number having business account or normal whatsapp account . please give a code of (useWhatsAppBusiness) your function.

  12. Manuel Allenspach

    This is now possible through the WhatsApp Business API. Only businesses may apply to use it. This is the only way to directly send messages to phone numbers, without any human interaction.

    Sending normal messages is free. It looks like you need to host a MySQL database and the WhatsApp Business Client on your server.

    1. v8rs

      Where did you get the information saying that sending normal messages is free? I thought it was not

  13. Aftab Alam

    Send a text to specific contact programmatically (Whatsapp)

    try { val i = Intent(Intent.ACTION_VIEW) val url = "https://api.whatsapp.com/send?phone=91XXXXXXXXXX&text=yourmessage" i.setPackage("com.whatsapp") i.data = Uri.parse(url) startActivity(i) } catch (e: Exception) { e.printStackTrace() val uri = Uri.parse("market://details?id=com.whatsapp") val goToMarket = Intent(Intent.ACTION_VIEW, uri) startActivity(goToMarket) }
  14. Taufiq Suryanto

    try this, worked for me ! . Just use intent

    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(whatsappUrl())); startActivity(intent);

    Build whatsapp url. add country code in whatsapp phone number https://countrycode.org/

    public static String whatsappUrl(){ final String BASE_URL = "https://api.whatsapp.com/"; final String WHATSAPP_PHONE_NUMBER = "628123232323"; //'62' is country code for Indonesia final String PARAM_PHONE_NUMBER = "phone"; final String PARAM_TEXT = "text"; final String TEXT_VALUE = "Hello, How are you ?"; String newUrl = BASE_URL + "send"; Uri builtUri = Uri.parse(newUrl).buildUpon() .appendQueryParameter(PARAM_PHONE_NUMBER, WHATSAPP_PHONE_NUMBER) .appendQueryParameter(PARAM_TEXT, TEXT_VALUE) .build(); return buildUrl(builtUri).toString(); } public static URL buildUrl(Uri myUri){ URL finalUrl = null; try { finalUrl = new URL(myUri.toString()); } catch (MalformedURLException e) { e.printStackTrace(); } return finalUrl; }
    1. Simple Fellow

      but it just shows the send screen and requires you to click send button. can't it be automated that i don't have to press the send button? i tried many things all i got to was the screen but not send it automatically

    2. shodiqul muzaki

      yes work, but how to send automatic without click send button on whatsapp chat ?

    3. Taufiq Suryanto

      I think whatsapp api doesn't have features to send automatic messange without opening whatsapp chat room before. Please read this for more details faq.whatsapp.com/en/android/26000030

    4. Raj

      This worked as I expected. Opens the chat thread even the contact is not saved

  15. Savan

    In Python, you can do it the same way we do it with mobile application

    web.open('https://web.whatsapp.com/send?phone='+phone_no+'&text='+message)

    This will prepopulate the text for given mobile number(Enter the phone_no as CountryCode and the number eg +918888888888) Then using pyautogui you can press enter onto whatsapp.web

    Working code :

    def sendwhatmsg(phone_no, message, time_hour, time_min): '''Sends whatsapp message to a particulal number at given time''' if time_hour == 0: time_hour = 24 callsec = (time_hour*3600)+(time_min*60) curr = time.localtime() currhr = curr.tm_hour currmin = curr.tm_min currsec = curr.tm_sec currtotsec = (currhr*3600)+(currmin*60)+(currsec) lefttm = callsec-currtotsec if lefttm <= 0: lefttm = 86400+lefttm if lefttm < 60: raise Exception("Call time must be greater than one minute") else: sleeptm = lefttm-60 time.sleep(sleeptm) web.open('https://web.whatsapp.com/send?phone='+phone_no+'&text='+message) time.sleep(60) pg.press('enter')

    I've taken this from this repository - Github repo

  16. Jeet Raj Sahil

    Update 2020

    String number="+91 7*********"; String url="https://api.whatsapp.com/send?phone="+number + "&text=" + "Your text here"; Intent i=new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse(url)); startActivity(i);
  17. Arunraj S

    Use this function. Don't forget to save the WhatsApp Number on your mobile before sending trigger the function.

    private void openWhatsApp() { Uri uri = Uri.parse("smsto:"+ "12345"); Intent i = new Intent(Intent.ACTION_SENDTO,uri); i.setPackage("com.whatsapp"); startActivity(i); }
  18. AnirbanMukherjee

    The following will open up the Whatsapp conversation (with a contact) page and prefill it with the text provided. Note: This is not going to automatically send the text off to the Whatsapp servers. It will only open the conversation page. The user needs to explicitly press the "Send" button to actually have the text sent to the servers.

    String phoneId = "+1415xxxyyyy"; // the (Whatsapp) phone number of contact String text = "text to send"; Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.setType("text/plain"); sendIntent.putExtra(Intent.EXTRA_TEXT, text); sendIntent.putExtra("jid", phoneId); sendIntent.setPackage("com.whatsapp"); startActivity(sendIntent);
    1. Zumbarlal Saindane

      Added below lines and work for me. sendIntent.putExtra("jid", recipient+"@s.whatsapp.net"); sendIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); Thanks

  19. Mhamza007

    Here is a way how to send message in WhatsApp in KOTLIN

    private fun sendMessage(phone: String, message: String) { val pm = requireActivity().packageManager val i = Intent(Intent.ACTION_VIEW) try { val url = "https://api.whatsapp.com/send?phone=$phone&text=" + URLEncoder.encode( message, "UTF-8" ) i.setPackage("com.whatsapp") i.data = Uri.parse(url) if (i.resolveActivity(pm) != null) { context?.startActivity(i) } } catch (e: PackageManager.NameNotFoundException) { Toast.makeText(requireContext(), "WhatsApp not Installed", Toast.LENGTH_SHORT).show() } }
  20. swati kapoor
    private void openWhatsApp() { //without '+' try { Intent sendIntent = new Intent("android.intent.action.MAIN"); //sendIntent.setComponent(new ComponentName("com.whatsapp", "com.whatsapp.Conversation")); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.setType("text/plain"); sendIntent.putExtra("jid",whatsappId); sendIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); sendIntent.setPackage("com.whatsapp"); startActivity(sendIntent); } catch(Exception e) { Toast.makeText(this, "Error/n" + e.toString(), Toast.LENGTH_SHORT).show(); Log.e("Error",e+"") ; } }
  21. Jorge Casariego

    This code is implemented with Kotlin.

    I have 2 versions:

    1) For known contacts

    private fun openWhatsApp(dato: WhatsApp) { val isAppInstalled = appInstalledOrNot("com.whatsapp") if (isAppInstalled) { val intent = Intent(Intent.ACTION_VIEW, Uri.parse("https://api.whatsapp.com/send?phone=${dato.whatsapp}")) startActivity(intent) } else { // WhatsApp not installed show toast or dialog } } private fun appInstalledOrNot(uri: String): Boolean { val pm = requireActivity().packageManager return try { pm.getPackageInfo(uri, PackageManager.GET_ACTIVITIES) true } catch (e: PackageManager.NameNotFoundException) { false } }

    In the case of being an unknown contact WhatsApp shows the following message

    2) For unknown contacts

    private fun openWhatsApp(dato: WhatsApp) { val isAppInstalled = appInstalledOrNot("com.whatsapp") if (isAppInstalled) { val sendIntent = Intent("android.intent.action.MAIN") sendIntent.setType("text/plain") sendIntent.setComponent(ComponentName("com.whatsapp", "com.whatsapp.Conversation")) sendIntent.putExtra("jid", PhoneNumberUtils.stripSeparators(dato.whatsapp) + "@s.whatsapp.net") startActivity(sendIntent) } else { // WhatsApp not installed show toast or dialog } } private fun appInstalledOrNot(uri: String): Boolean { val pm = requireActivity().packageManager return try { pm.getPackageInfo(uri, PackageManager.GET_ACTIVITIES) true } catch (e: PackageManager.NameNotFoundException) { false } }
  22. Satan Pandeya

    Check this answer. Here your number start with "91**********".

    Intent sendIntent = new Intent("android.intent.action.MAIN"); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.setType("text/plain"); sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send."); sendIntent.putExtra("jid",PhoneNumberUtils.stripSeparators("91**********") + "@s.whatsapp.net"); sendIntent.setPackage("com.whatsapp"); startActivity(sendIntent);
  23. AnirbanMukherjee

    Whatsapp and most other apps that integrate into the Android core components (like Contacts) use a mime-type based intent to launch a certain Activity within the application. Whatsapp uses 3 separate mimetypes - text messages (vnd.android.cursor.item/vnd.com.whatsapp.profile), voip calls (vnd.android.cursor.item/vnd.com.whatsapp.voip.call) and video calls(vnd.android.cursor.item/vnd.com.whatsapp.video.call). For each of these mimetypes, a separate activity is mapped inside the Manifest of the application. For ex: the mimetype (...whatsapp.profile) maps to an Activity (com.whatsapp.Conversation). You can see these in detail if you dump out all the Data rows that maps to any Whatsapp Raw_Contact in your Contacts database.

    This is also how the Android Contacts app shows 3 separate rows of user action inside a "Whatsapp contact", and clicking either of these rows launches a separate function inside Whatsapp.

    To launch a Conversation (chat) Activity for a certain contact in Whatsapp, you need to fire an intent containing MIME_TYPE and DATA_URL. The mimetype points to the mimetype corresponding to your action as defined inside Whatsapp's Raw Contact in Contacts database. The DATA_URL is the URI of the Raw_Contact in the Android contacts database.

    String whatsAppMimeType = Uri.parse("vnd.android.cursor.item").buildUpon() .appendEncodedPath("vnd.com.whatsapp.profile").build().toString(); Uri uri = ContactsContract.RawContacts.CONTENT_URI.buildUpon() .appendQueryParameter(ContactsContract.RawContacts.ACCOUNT_TYPE, "com.whatsapp") .appendQueryParameter(ContactsContract.RawContacts.ACCOUNT_NAME, "WhatsApp") .build(); Cursor cursor = getContentResolver().query(uri, null, null, null); if (cursor==null || cursor.getCount()==0) continue; cursor.moveToNext(); int rawContactId = cursor.getInt(cursor.getColumnIndex(ContactsContract.RawContacts._ID)); cursor.close(); // now search for the Data row entry that matches the mimetype and also points to this RawContact Cursor dataCursor = getContentResolver().query(ContactsContract.Data.CONTENT_URI, null, ContactsContract.Data.MIMETYPE + "=? AND " + ContactsContract.Data.RAW_CONTACT_ID + "=?", new String[]{whatsAppMimeType, String.valueOf(rawContactId)}, null); if (dataCursor==null || dataCursor.getCount()==0) continue; dataCursor.moveToNext(); int dataRowId = dataCursor.getInt(dataCursor.getColumnIndex(ContactsContract.Data._ID)); Uri userRowUri = ContactsContract.Data.CONTENT_URI.buildUpon() .appendPath(String.valueOf(dataRowId)).build(); // launch the whatsapp user chat activity Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(userRowUri, whatsAppMimeType); startActivity(intent); dataCursor.close();

    This is the same way that all Contacts app use to launch a chat Activity for a Whatsapp contact. Inside this Activity, the application (Whatsapp) reads in the .getData() to get the DATA_URI which was passed to this Activity. The Android Contacts app uses a standard mechanism to use the URI of the Raw Contact in Whatsapp. Unfortunately, I am not aware of a way by which the .Conversation ativity in Whatsapp reads in any text / data information from the caller of the intent. This basically means that its possible (using a very standard technique) to launch a certain "user action" inside Whatsapp. Or for that matter, any similar app.

    1. user1034912

      This only opens the contact page in Whatsapp but does not include a Text. How do you send the text?

  24. Gaurav meghanathi
    private void sendToContactUs() { String phoneNo="+918000874386"; Intent sendIntent = new Intent("android.intent.action.MAIN"); sendIntent.setAction(Intent.ACTION_VIEW); sendIntent.setPackage("com.whatsapp"); String url = "https://api.whatsapp.com/send?phone=" + phoneNo + "&text=" + "Unique Code - "+CommonUtils.getMacAddress(); sendIntent.setDataAndType(Uri.parse(url),"text/plain"); if(sendIntent.resolveActivity(getPackageManager()) != null){ startActivity(sendIntent); }else{ Toast.makeText(getApplicationContext(),"Please Install Whatsapp Massnger App in your Devices",Toast.LENGTH_LONG).show(); } }
  25. CHirag RAmi

    public void shareWhatsup(String text) { String smsNumber = "91+" + "9879098469"; // E164 format without '+' sign Intent intent = new Intent(Intent.ACTION_VIEW); try { String url = "https://api.whatsapp.com/send?phone=" + smsNumber + "&text=" + URLEncoder.encode(text, "UTF-8"); intent.setPackage("com.whatsapp"); intent.setData(Uri.parse(url)); } catch (Exception e) { e.printStackTrace(); } // intent.setAction(Intent.ACTION_SEND); // intent.setType("image/jpeg"); // intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imageUriArray); startActivity(intent); }Run code snippet

    Hide resultsExpand snippet

  26. Dinesh Prajapati

    This solution works for me in all Android versions after trying many solutions

    1.Add this in AndroidManifest

    <queries> <package android:name="com.whatsapp" /> <package android:name="com.whatsapp.w4b" /> </queries>

    Use this source code for WhatsApp and business WhatsApp both.

    private void openWhatsApp(String msg, String contact) { if (contact.length() < 10) { contact = AppPreference.whatsAppNo; } contact = "91" + contact; boolean isWhatsappInstalled = whatsappInstalledOrNot("com.whatsapp"); boolean isWhatsappInstalledW4B = whatsappInstalledOrNot("com.whatsapp.w4b"); if (isWhatsappInstalledW4B) { PackageManager packageManager = getPackageManager(); Intent i = new Intent(Intent.ACTION_VIEW); try { String url = "https://api.whatsapp.com/send?phone=" + contact + "&text=" + URLEncoder.encode(msg, "UTF-8"); i.setPackage("com.whatsapp.w4b"); i.setData(Uri.parse(url)); if (i.resolveActivity(packageManager) != null) { startActivity(i); } } catch (Exception e) { e.printStackTrace(); } } else if (isWhatsappInstalled) { PackageManager packageManager = getPackageManager(); Intent i = new Intent(Intent.ACTION_VIEW); try { String url = "https://api.whatsapp.com/send?phone=" + contact + "&text=" + URLEncoder.encode(msg, "UTF-8"); i.setPackage("com.whatsapp"); i.setData(Uri.parse(url)); if (i.resolveActivity(packageManager) != null) { startActivity(i); } } catch (Exception e) { e.printStackTrace(); } } else { Uri uri = Uri.parse("market://details?id=com.whatsapp"); Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri); Toast.makeText(this, "WhatsApp not Installed", Toast.LENGTH_SHORT).show(); startActivity(goToMarket); } } private boolean whatsappInstalledOrNot(String uri) { PackageManager pm = getPackageManager(); boolean app_installed = false; try { pm.getPackageInfo(uri, PackageManager.GET_ACTIVITIES); app_installed = true; } catch (PackageManager.NameNotFoundException e) { app_installed = false; } return app_installed; }
  27. Aman Jain

    This will first search for the specified contact and then open a chat window.

    Note: phone_number and str are variables.

    Uri mUri = Uri.parse("https://api.whatsapp.com/send? phone=" + phone_no + "&text=" + str); Intent mIntent = new Intent("android.intent.action.VIEW", mUri); mIntent.setPackage("com.whatsapp"); startActivity(mIntent);
  28. Venus Solutions
    Bitmap bmp = null; bmp = ((BitmapDrawable) tmpimg.getDrawable()).getBitmap(); Uri bmpUri = null; try { File file = new File(getBaseContext().getExternalFilesDir(Environment.DIRECTORY_PICTURES), "share_image_" + System.currentTimeMillis() + ".jpg"); FileOutputStream out = new FileOutputStream(file); bmp.compress(Bitmap.CompressFormat.PNG, 90, out); out.close(); bmpUri = Uri.fromFile(file); } catch (IOException e) { e.printStackTrace(); } String toNumber = "+919999999999"; toNumber = toNumber.replace("+", "").replace(" ", ""); Intent shareIntent =new Intent("android.intent.action.MAIN"); shareIntent.setAction(Intent.ACTION_SEND); String ExtraText; ExtraText = "Share Text"; shareIntent.putExtra(Intent.EXTRA_TEXT, ExtraText); shareIntent.putExtra(Intent.EXTRA_STREAM, bmpUri); shareIntent.setType("image/jpg"); shareIntent.setPackage("com.whatsapp"); shareIntent.putExtra("jid", toNumber + "@s.whatsapp.net"); shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); try { startActivity(shareIntent); } catch (android.content.ActivityNotFoundException ex) { Toast.makeText(getBaseContext(), "Sharing tools have not been installed.", Toast.LENGTH_SHORT).show(); } }
    1. Dave Nottage

      At present, this code does not have WhatsApp select the specific contact - it just shows the contact list

  29. venkata raju kattamuri

    Instead of biasing to share the content to whats app.

    Following code is a generic code that will give a simple solution using "ShareCompact" that android opens the list of apps that supports the sharing the content.

    Here I am sharing the data of mime-type text/plain.

    String mimeType = "text/plain" String Message = "Hi How are you doing?" ShareCompact.IntentBuilder .from(this) .setType(mimeType) .setText(Message) .startChooser()

Add a new comment.