Android Question AppCompat with Black Title?

DonManfred

Expert
Licensed User
Longtime User
Feel free to create a Theme with the colors you want.
 
Upvote 0

Matteo Granatiero

Active Member
Licensed User
B4X:
Dim cs As CSBuilder
   ACToolBarLight1.Title = cs.Initialize.Color(Colors.Black).Append("test").PopAll

I tried and it works, but it is against me because it accepts me or the custom color or custom font. I enter the font code.
P.S. I tried them together in the same string, on the compiler not by error, when debugging.

B4X:
cs.Initialize.Color(Colors.Black).Append("Hello").Pop
cs.Initialize.Typeface(tf).Append("Hello").Pop

cs.Initialize.Color(Colors.Black).Typeface(tf).Append("Hello"). Pop --> error
 
Upvote 0
Top