Sure, its very possible and easy to do with B4A. Check out Custom Dialogs
You can also create it manually,
Add a panel
-Add your image as a background
-Use QR Generator to create your QRCode and place it on the panel
-Use a lable or another panel and insert the close icon image and position it well.
-Send this panel to back or make it invisible (To call it, make it visible or bring it to front) depending on the one you use.
Sure, its very possible and easy to do with B4A. Check out Custom Dialogs
You can also create it manually,
Add a panel
-Add your image as a background
-Use QR Generator to create your QRCode and place it on the panel
-Use a lable or another panel and insert the close icon image and position it well.
-Send this panel to back or make it invisible (To call it, make it visible or bring it to front) depending on the one you use.
I tried your suggestion and works very well, but i have a question how to remove custom buttons in dialog (ok and cancel)
(i want it to be clean and plain panel with image and buttons only)
B4X:
Wait For (dialog.ShowCustom(p, "OK", "", "CANCEL")) Complete (Result As Int)
If Result = xui.DialogResponse_Positive Then
dialog.Show(fieldFirstName.Text & " " & fieldLastName.Text, "OK", "", "")
Else
End If
how to capture/listen to the buttons inside the panel i made using xui dialog?