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?
It is related to the PutAtTop property. PutAtTop should be set to True when the dialog includes text fields (EditText). B4XDialog removes the title if there is not enough space for the keyboard under the dialog.