Skip to content

Instantly share code, notes, and snippets.

@gerryhigh
Created December 8, 2013 14:42
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 gerryhigh/7858437 to your computer and use it in GitHub Desktop.
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
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