Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Created April 1, 2017 09:03
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 dsibinski/c5e4309e60888a66284df0dede98d877 to your computer and use it in GitHub Desktop.
Save dsibinski/c5e4309e60888a66284df0dede98d877 to your computer and use it in GitHub Desktop.
private void ListView_ItemClick(object sender, AdapterView.ItemClickEventArgs e)
{
var person = _peopleList[e.Position];
var uri = Android.Net.Uri.Parse("tel:" + person.PhoneNumber);
var intent = new Intent(Intent.ActionDial, uri);
StartActivity(intent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment