I have an “about” menu button and wish to add a “contact” message with my mail.
Can i put the mail address with an hyperlink to the default mail application in the phone ?
Thank you.
I have an about menu button and wish to add a contact message with
Share
You can use
android:autoLinkin an XML definition orsetAutoLinkMaskin code on aTextViewin your About dialog. I would assume but haven’t tried that if the text is of the formmailto://it will open the email app. It opens the browser usinghttp://which I have tried.Edit:
For a basic view that you could assign the the
AlertDialogwithsetViewyou could do:This is psuedo code and may need modifying for your situation.
Edit:
For a more complicated view try:
An even better way of doing this is to define your layout in XML and manually inflate it and then add to the
AlertDialogusingaddView.