I use below code for show text contain link
My code show text in label contain link ("Signup?")
But the color of link is blue
And i need to change it example change to gray color
Csbuilder dont have any method for change link color
Do you can help me?
B4X:
Dim cs As CSBuilder
cs.Initialize
cs.Color(Colors.Red).Append("Please login to app").PopAll
cs.Color(Colors.Yellow).Link("link").Append(" Signup?").Pop.Pop
lbl.AttributedText = cs.PopAll
But the color of link is blue
And i need to change it example change to gray color
Csbuilder dont have any method for change link color
Do you can help me?