Android Code Snippet Change Link Color in View

Hi
With below code you can linkable view and convert phone or url or email to link
I only add change link color method in this function

B4X:
Sub LinkifyTextView(textViewArg As View, maskArg As Int,LinksColor As Int)
    Dim r As Reflector
    r.Target = textViewArg
    r.RunMethod2("setAutoLinkMask", maskArg, "java.lang.int")
    r.RunMethod2("setLinkTextColor", LinksColor, "java.lang.int")
End Sub
 
Top