Android Question B4XDialog.title

peter93

Member
Licensed User
Longtime User
I have these lines of code :
B4X:
Dialog.Initialize(Base)
Dialog.Title = "Parameters"
Dialog.TitleBarColor = 0xFF720939
Dialog.ButtonsColor = 0x64720939
Dialog.ButtonsTextColor = XUI.color_White
Dialog.PutAtTop = True
Dialog.BlurBackground = True
Dialog.BackgroundColor = 0xFFFFDAE9
Dim p As B4XView = XUI.CreatePanel("")
p.SetLayoutAnimated(300, 0, 0, 95%x, 72%y)
p.LoadLayout("Param")
Dim rs As ResumableSub = Dialog.ShowCustom(p, "Close", "", "")
Wait For (rs) Complete (Result As Int)
with the new version of b4xViews the dialog title no longer appears
while it worked with the previous version.
same thing with a csbuilder. Did I forget Something?
 
Last edited:
Top