Exemplo n.º 1
0
 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)));
 }
Exemplo n.º 2
0
        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)));
        }
 public ItemClickListener(AboutActivity context, StoreLink item)
 {
     _context = context;
     _item = item;
 }