EasyBike.Droid.Views.AboutActivity.List_Click C# (CSharp) 메소드

List_Click() 공개 메소드

public List_Click ( StoreLink item ) : void
item StoreLink
리턴 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)));
        }
    }