I wanted to update an already existing B4i app and thought it wouldn't take me much ?...but here I am.
In this version, some explanatory texts are to be added to a TextView, and some parts of which should be clickable. So I thought of using CSBuilder. However, by design, the clickable parts must be a different color that the one iOS is showing (blue), and I can't get it to change whatever I try
Does anyone know the proper way to change the color of clickable links by using CSBuilder in B4i?  I've tried with (just testing)
	
	
	
	
	
	
	
	
	
		Dim cs As CSBuilder
    cs.Initialize.Alignment("ALIGN_LEFT")
    cs.Append("example text1")
    cs.Link("link1").Color(Colors.White).Underline.Append("This is my Link").Pop.Pop.Pop
    cs.Append("example text2")
   cs..PopAll
	 
	
	
		
	
 
and also tried with the 
B4A CSBuilder tutorial approach (a separate CSBuilder), but it is not compatible with B4i's CSBuilder. 
I'm wondering if I am missing something obvious, or it works like this and I must take another approach