Skip to content

Instantly share code, notes, and snippets.

@a7madev
Created October 16, 2014 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a7madev/606ea5805deec9c21acb to your computer and use it in GitHub Desktop.
Save a7madev/606ea5805deec9c21acb to your computer and use it in GitHub Desktop.
Open Whatsapp Contact Chat
void openWhatsappContact(String number) {
Uri uri = Uri.parse("smsto:" + number);
Intent i = new Intent(Intent.ACTION_SENDTO, uri);
i.setPackage("com.whatsapp");
startActivity(Intent.createChooser(i, ""));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment