Last active
January 7, 2016 07:50
-
-
Save cketti/51938e906959e66d7d6d to your computer and use it in GitHub Desktop.
Simple ACTION_SENDTO Intent creation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Intent emailIntent = new Intent(Intent.ACTION_SENDTO); | |
emailIntent.setData(Uri.parse("mailto:[email protected]")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment