B4J Question B4XDialog Color

Blueforcer

Well-Known Member
Licensed User
Longtime User
Good Morning,

How can i change the color of the whole Dialog?
I found everything exept the list color itself.

Thanks

upload_2019-4-8_7-56-55.png
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
B4X:
Dim l As B4XListTemplate
l.Initialize
l.Options = Array("a", "b", "c")
l.CustomListView1.DefaultTextBackgroundColor = 0xFFDDDDDD
l.CustomListView1.DefaultTextColor = xui.Color_Black
l.CustomListView1.AsView.Color = 0xFFDDDDDD
dialog.BackgroundColor = 0xFFDDDDDD
dialog.ButtonsColor = 0xFF8F8F8F
dialog.ShowTemplate(l, "Yes", "No", "Cancel")

SS-2019-04-08_10.37.01.png
 
Upvote 0
Top