B4A Library [B4X] [XUI] B4XDialog - Custom dialogs - Erel    Dec 19, 2021   (22 reactions)   tags: B4X XUI B4X Dialog Custom, xui, myapp, Dialogs and dialogs B4XDialog class helps with creating cross platform custom dialogs. The dialog is made... the content size p.LoadLayout("CustomLayout") Dim rs As ResumableSub = Dialog.Show... with MainForm.RootPane or Page1.RootPanel or any other panel you like): Sub ShowDialog Dim p...) If Result = xui.DialogResponse_Positive Then 'do something End If End Sub In... ime_HeightChanged (NewHeight As Int, OldHeight As Int) If Dialog.Visible Then Dialog.Resize(100%x... B4A Tutorial Dialogs library 2017 - Custom dialogs and async methods - Erel    Nov 26, 2018   (19 reactions)   tags: dialog, wait, B4A Dialogs V4 Lib, WaitFor, Dialogs CustomLayoutDialog which makes it easier to develop custom dialogs. - New ShowAsync methods for all dialogs except of CustomDialog and CustomDialog2. The ShowAsync methods behave similar to Msgbox2Async and...-sleep-wait-for.78601/page-2#post-499130 CustomLayoutDialog CustomLayoutDialog replaces CustomDialog and CustomDialog2. As it is a non-modal dialog, it is more powerful. You can handle events while the dialog is visible and manage the dialog itself. Note that CustomLayoutDialog is supported... B4i Tutorial Custom Dialogs with iCustomDialog library - Erel    Nov 26, 2018   (5 reactions) /#content
B4i v4.30 includes a new library named iCustomDialog. It is based on SCLAlertView open source project (https://github.com/dogo/SCLAlertView).
It makes it simple to create custom dialogs. It is quite similar to B4A CustomLayoutDialog from the Dialogs library (https://www.b4x.com/android/forum... B4A Code Snippet CustomLayoutDialog with CustomListView - Erel    Jul 30, 2017   (16 reactions)   tags: wait, CustomLayoutDialog, CustomLayoutDialog Dialog with a CustomListView. Make sure that the CLV is anchored to all sides: https://www.b4x.com/basic4android/images/SS-2017-07-30_08.57.39.png 2. Create the dialog: Sub Activity_Click Dim cd As CustomLayoutDialog cd.ShowAsync("Choose item", "", "", "", Null, False) cd.SetSize(100%x, 100%y) 'request maximum size Wait For Dialog_Ready (DialogPanel As Panel) DialogPanel.LoadLayout("CustomDialogLayout") For i = 1 To 20 CLVDialog... B4A Question [Solved] Change color of the CustomLayoutDialog - asales    Nov 16, 2017 I see this code to change color and text size of the button in Custom layout dialog: https://www.b4x.com/android/forum/threads/custom-layout-dialog-properties.85410/#post-541103 Is possible to change the color of Dialog itself to blue, red or other? Thanks in advance for any tip.... B4J Question (Solved) Calculate CustomListView height inside the PreferencesDialog - aeric    Sep 8, 2021 How to calculate the CustomListView height inside the PreferencesDialog? I need to set the height so it is just nice not to be scrollable by mouse.... B4i Question iCustomDialog position behaviour - Mike1970    Jun 17, 2018 . By the way, I'm facing a problem with the iCustomDialog's library. In one of your posts, using the following code, it do the job: Public Sub MoveCustomDialog(cd As CustomLayoutDialog, Top... reached. Using instead this version of the code: Public Sub MoveCustomDialog(cd As CustomLayoutDialog... on the screen. Setting any value different from zero, to v.Top causes the iCustomDialog to set the position again in the center of the screen (202.0) in the iPhone 6 case. Is there a bug into the iCustomDialog... B4A Code Snippet Non-centered Custom layout dialog - Erel    Oct 26, 2017   (9 reactions)   tags: Dialog to change the CustomLayoutDialog position. It also demonstrates how to access the layout fields and how to make sure that the keyboard is closed when the dialog is dismissed. The layout file looks... in the views tree. Code: Sub Activity_Click Dim dialog As CustomLayoutDialog Dim sf As Object = dialog.ShowAsync("", "Yes", "Cancel", "No", Null, False) dialog.SetSize(100%x, 300dip) 'Code to change top position Dim jo As JavaObject = sf... B4A Question [Solved] How to disable a XUI CustomDialogs button? - JakeBullet70    Jul 1, 2022 Trying to disable a button the XUI CustomDialogs
All works just fine except it tosses an error when trying to disable the 'positive' button
Is it a bug or am I clueless? ;)
dialog... (dialog.ShowCustom(p, "OK", "", "Cancel")) Complete (Result As Int... B4A Library fgCustomDialog ( Modal-Dialog) - Deleted member 103    Feb 3, 2022   (4 reactions) Deleted... Page: 1   2   3   4   5   6   7   |