B4X:
InputTemplate.lblTitle.Text = "lbl text"
InputTemplate.TextField1.EditTextHint="hint text"
InputTemplate.RegexPattern = ("[a-zA-Z0-9]{17}")'<---optional. Remove if not needed
Wait For (Dialog.ShowTemplate(InputTemplate, "OK", "", "CANCEL")) Complete (Result As Int)
If Result = XUI.DialogResponse_Positive Then
ToastMessageShow(InputTemplate.Text.ToUpperCase,True)
End If
1) How to change the label at the top of the "XUI Views" dialog to any other?
2) How can I change the background color of the XUI Views caption and the color of the OK and Cancel buttons?
3) How do "EditTextHint" change the font size?