Hi i have 2 buttons, Share and Send feedback. I want to know this:
If i press
1) Share, it will show me the list of availeble ways (like share image in gallery).
2) Send feedback, it will open email client with my adress.
exp:
TO: me@gmail.com
From: james@outlook.com
Test: U have nice app
---------------------------------
Thanks
1)
ShareStatusTask shareStatusTask = new ShareStatusTask();
shareStatusTask.Status = "My string to share";
shareStatusTask.Show();
2)
EmailComposeTask emailComposeTask = new EmailComposeTask();
emailComposeTask.Subject = "my Subject";
emailComposeTask.To = "asd@asd.com";
emailComposeTask.Show();
I do not know if this is what you asked