B4XDialog from XUI Views library can show simple dialogs, template based dialogs and custom dialogs. The example projects demonstrate the various template dialogs: https://www.b4x.com/android/forum/threads/b4x-xui-views-cross-platform-views-and-dialogs.100836/ This example focuses on...
This code works, but the dialog background is black and covers totally the form ?
B4X:
Base = anagrafica.RootPane
Dialog.Title = "XUI Views"
Dialog.Initialize (Base)
InputTemplate.lblTitle.Text = "Enter time (HH:MM)"
Wait For (Dialog.ShowTemplate(InputTemplate, "OK", "", "CANCEL")) Complete (Result As Int)
If Result = XUI.DialogResponse_Positive Then
ListView3.Items.Set(ListView3.SelectedIndex,InputTemplate.Text.ToUpperCase)
End If