B4A Library Dialogs2 library - an update to the original Dialogs library - agraham    Oct 7, 2021   (45 reactions) .
Every dialog, except CustomLayoutDialog now supports both Show and ShowAsync. In past editions of B4A events raised by views on a CustomDialog or CustomDialog2 would run while the dialog was shown... custom dialogs that relied on events from views on the dialog no longer work as expected. For example in the reworked CustomDialog2 example in the DialogsDemo file the ListView ItemClick no longer... B4A Library [B4X] XUI Views - Cross platform views and dialogs - Erel    Mar 19, 2025   (85 reactions)   tags: B4X XUI Views Dialogs, xui, XUI Views dialog with text, ShowCustom - Allows you to pass a layout of your own and show it as a dialog... instance. This makes it simpler to get a custom view from the layout tree. V1.65 - New dialog template... layout file. A custom "list of colors" dialog added to the example: https://www.b4x.com...). The same b4xlib library is compatible with B4A, B4i and B4J It is a collection of custom views and dialogs. Everything is written in B4X. The source code is included inside the b4xlib file, which... B4A Class [custom view] GifViewer - Erel (first post)    Jul 27, 2017   (3 reactions)   tags: gif view Example of using it in a CustomLayoutDialog (Dialogs library):
https://www.b4x.com/basic4android/images/SS-2017-07-26_18.03.17.png... B4A Library [B4X] [XUI] xCustomListView - cross platform CustomListView - Erel    Dec 24, 2023   (46 reactions)   tags: CustomListView, xcutomlistbox card, xuiCLV, CUSTOMLIST, Erel, XUI Update: As several other libraries depend on xCustomListView library, it is no longer recommended... xCustomListView is an implementation of CustomListView based on XUI library. It provides all the features of the original CustomListView and it is compatible with B4A, B4J and B4i. https://www.b4x.com.../basic4android/images/SS-2017-12-27_16.20.44.png This class replaces the platform specific CustomListView... #${i}"$) Don't use the source code. Use the preinstalled xCustomListView library instead... B4A Library UltimateWebView Custom View - Ivica Golubovic    Jan 1, 2024   (54 reactions) " /> ) UltimateWebView is a Custom View Library and it is possible to add a View through... As Boolean) 'Do not forget to load the layout file created with the visual designer. For example: Activity.LoadLayout("Main") UltimateWebView1.SetWebViewClient 'Sets...) 'Do not forget to load the layout file created with the visual designer. For example: Activity.LoadLayout("Main") 'First Initialize UltimateWebView UltimateWebView1... B4A Library [B4X] PreoptimizedCLV - Lazy loading extension for xCustomListView - Erel    Aug 28, 2025   (42 reactions) ) Activity.LoadLayout("1") PCLV.Initialize(Me, "PCLV", CustomListView1) Dim... including complex custom types that hold all the data needed to later build the layout. Step #2: Call...This is a cross platform class that extends xCustomListView and makes it "lazier". Lazy.... It is simplest to implement and the easiest one to customize. This method is good for up to several hundred items, depending of course on the items content. Level 1: Creating all layout except... B4A Library [B4X] [XUI] B4XDialog - Custom dialogs - Erel    Dec 19, 2021   (21 reactions)   tags: B4X XUI B4X Dialog Custom, xui, myapp, Dialogs with MainForm.RootPane or Page1.RootPanel or any other panel you like): Sub ShowDialog Dim p As B4XView = xui.CreatePanel("") p.SetLayoutAnimated(0, 0, 0, 300dip, 170dip) 'set the content size p.LoadLayout("CustomLayout") Dim rs As ResumableSub = Dialog.Show... and dialogs B4XDialog class helps with creating cross platform custom dialogs. The dialog is made...) If Result = xui.DialogResponse_Positive Then 'do something End If End Sub In... B4A Library [B4X] B4XPreferencesDialog - Cross platform forms - Erel    Nov 12, 2021   (52 reactions)   tags: preference, B4X, builder, B4X B4XPreferencesDialog fixes. New BeforeDialogDisplayed event that allows customizing the dialogs buttons. New DefaultHintFont... B4XPreferencesDialog makes it easy to create dialogs with all kinds of input fields. The main steps required to use these dialogs are: 1. Define the list of fields. The recommended way to do it is with Forms Builder... programmatically by calling SetOptions. 2. Call ShowDialog and pass the data map... (prefdialog.ShowDialog(Options1, "OK", "CANCEL")) Complete (Result As Int) If... B4A Library [B4X] CLVSwipe - xCustomListView Swipe actions and pull to refresh - Erel    Mar 2, 2025   (48 reactions)   tags: CLVSwipe, CLVSwipe - CustomListView, xuiCLV, xclv swipe pull, clv, myapp CLVSwipe is a class that adds "swipe actions" and pull to refresh features to the standard xCustomListView library. It is compatible with B4A and B4i (currently not with B4J). Both features are optional. 295327727 Using it is simple: 1. Add the class to your project. It depends on XUI, xCustomListView and ViewsEx v1.30+. 2. Initialize Swipe and pass the CustomListView. 3. In...: CustomListView1.AddTextItem($"Important item ${i} ..."$, Swipe.CreateItemValue("", Array... Tool [B4X] JsonLayouts - synchronize json and binary layouts - Erel    Jun 26, 2025   (22 reactions) The purpose of this tool is to automatically generate json layout files, and synchronize them...: https://www.b4x.com/b4j/files/JsonLayouts.jar
2. Add this code to Main module:
#Macro: After Save... Page: 1   2   3   4   5   6   7   |