Android Question How change background color and text color in bar title of B4XPages?

Edgardo PuntoCom

Member
Licensed User
Longtime User
Use CSBuilder, here is an example:
B4X:
Dim cs As CSBuilder
        cs.Initialize.Size(28).BackgroundColor(xui.Color_Yellow).Color(xui.Color_Red).Append("B4X").Pop.Color(xui.Color_Blue) _
        .Append("Main").Pop.color(xui.Color_Black).Append("Page").Popall
        B4XPages.SetTitle(Me,cs)
Thank you. That works for text, but not for coloring the entire title bar.
 
Upvote 0
Top