EasyBike.Droid.Views.AboutActivity.List_Click C# (CSharp) Method

List_Click() public method

public List_Click ( StoreLink item ) : void
item StoreLink
return void
        public void List_Click(StoreLink item)
        {
            var shareIntent = new Intent(Intent.ActionSend);
            var text = StaticResources.FormatShareMessage();
            shareIntent.PutExtra(Intent.ExtraText, text);
            shareIntent.SetType("text/plain");
            StartActivity(Intent.CreateChooser(shareIntent, Resources.GetString(Resource.String.share)));
        }
    }