'For the given text view (e.g. label), turn on its "linkify" feature (auto-converts text to clickable links).
'After that, you can set the view's text property to the actual text, and the auto-linking will be done.
'Mask determines which types of text to look for:
'0 = no links
'1 = web addresses only
'2 = email addresses only
'4 = phone numbers only
'8 = map addresses only (only works for addresses in USA - see Android's "findAddress" docs)
'15 = all (phone numbers, email addresses, web addresses, map addresses)
'You can combine two settings using bit.or (e.g. for web and email, use bit.or(1, 2))
Sub linkifyTextView(textViewArg As View, maskArg As Int)
Dim r As Reflector
r.Target = textViewArg
r.RunMethod2("setAutoLinkMask", "maskArg", "java.lang.int")
End Sub