Is there any method to disable all user interaction including the back button on navigation bar? I can do it with progressdialogshow but its' appearance is not good. So I will use a panel for this warning but I need to disable interaction during this warning panel is visible. is it possible?
1. Use B4XDialog. You can customize the dialog however you like.
2. Call Page.HideBackButton = True to disable the swipe gesture. In B4XPages: https://www.b4x.com/android/forum/t...back-button-top-bar-in-ios.130946/post-824375
In many cases it is simpler to show the page with B4XPages.ShowPageAndRemovePreviousPages. This way the page will not be removable.