Created
December 8, 2013 14:42
-
-
Save gerryhigh/7858437 to your computer and use it in GitHub Desktop.
Example of SMS intent broken on Kitkat until Xamarin can support API 19; this will spin with an hourglass once it launches google hangouts
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 intent = new Intent(Android.Content.Intent.ActionView); | |
intent.PutExtra("sms_body", "some text"); | |
intent.SetData(Android.Net.Uri.Parse("sms:")); | |
StartActivity(intent); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment