B4A Library [B4X] XUI Views - Cross platform views and dialogs - Erel    Nov 26, 2025   (85 reactions)   tags: B4X XUI Views Dialogs, xui, XUI Views ). 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 is a zip file. Views: - B4XRadioButton - Cross platform radio button. - B4XComboBox - Cross platform.... - AnotherProgressBar - Vertical or horizontal animated progress bar. - B4XLoadingIndicator - 6 different... - B4XFloatTextField - A TextField / EditText with a floating hint - B4XSwitch - Nice looking two state... B4A Library [B4X] B4XTable - Cross platform, sortable, searchable, customizable table - Erel    Sep 21, 2025   (59 reactions)   tags: xuiTable, b4xtable, DataGrid, Table, B4X B4XTable B4XTable is a paged based table. The UI is made of a horizontal xCLV. The data is stored in an in... use? 1. Add a B4XTable with the designer. 2. Add the columns: B4XTable1.AddColumn("US County", B4XTable1.COLUMN_TYPE_NUMBERS) B4XTable1.AddColumn("Name", B4XTable1... = su.LoadCSV2(File.DirAssets, "us_counties.csv", ",", headers) B4XTable1.SetData... Dim data As List data.Initialize data.Add(Array(1, 2, 3)) data.Add(Array(4, 5, 6)) B4XTable1.SetData... B4J Library [B4X] jRDC2 - B4J implementation of RDC (Remote Database Connector) - Erel    Mar 13, 2024   (42 reactions)   tags: RDC, jRDC2, conectate a un servidor, Remote Connector, DB Remote, Myapp example: http://www.b4x.com/basic4android/images/SS-2013-08-04_16.10.20.png Note that the configuration... sensitive and it doesn't include the 'sql.' prefix. 4. Run the program and test it locally... 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... features to xCLV. They are listed at the end of this post. Video tutorial: 256437236 xCustomListView is an implementation of CustomListView based on XUI library. It provides all the features.../basic4android/images/SS-2017-09-27_11.15.59.png https://www.b4x.com/basic4android/images/SS-2017-09-27_11.16.26.png https://www.b4x.com/basic4android/images/SS-2017-09-27_11.16.50.png https://www.b4x.com... B4A Library [B4X] BCTextEngine / BBCodeView - Text engine + BBCode parser + Rich Text View - Erel    Dec 31, 2024   (72 reactions)   tags: Label BBCode, text style, RTF component, B4X, ritchtext, rich text /basic4android/images/java_ROTR5mX3ls.png The cross platform b4xlib is attached. Note that it depends... loading is enabled. Example was updated and it is now based on B4XPages. B4i - There is an important... is: 'left, top, right, bottom If xui.IsB4J Then Padding.Initialize(5dip, 5dip, 20dip, 5dip...Be open minded. https://www.b4x.com/basic4android/images/i_view64_p9fVifsimf.png This is a cross.../basic4android/images/F0DYcnZwgV.gif The library and the code inside can be used for all kinds of things... B4A Class [class][B4X] Google OAuth2 - Erel    Oct 29, 2025   (44 reactions)   tags: wait, Google .", True) End If j.Release End Sub https://www.b4x.com/basic4android/images/SS-2017-05-11_15.25.44.png https://www.b4x.com/basic4android/images/SS-2017-05-11_15.29.51.png https://www.b4x.com/basic4android/images/SS-2017-05-11_15.30.18.png https://www.b4x.com/basic4android/images/SS-2017-06-20_17.56.27.png Updates: - B4XPages project is attached. Don't miss: Different ClientId for... if needed and add a client id: https://www.b4x.com/basic4android/images/SS-2017-05-11_15.14.36.png... B4A Library [B4X] B4XEncryption - Erel    Sep 10, 2025   (24 reactions)   tags: B4XEncryption, Security, encrypt, B4A confusion, B4XEncryptino is not a b4xlib and is made of three platform specific libraries: B4XEncryption - B4A jB4XEncryption - B4J iEncryption - B4i (Encrypt and Decrypt methods) It is simple to use...() Dim c As B4XCipher Return c.Encrypt(text.GetBytes("utf8"), password) End Sub Sub DecryptText(EncryptedData() As Byte, password As String) As String Dim c As B4XCipher Dim b...(DecryptText(encryptedData, "123456")) B4XPages example project is attached.... B4A Library [B4X] SimpleMediaManager (SMM) - framework for images, videos and more - Erel    Jul 2, 2025   (47 reactions) in Panel1 MediaManager.SetMedia(Panel1, "https://...") It uses B4XImageView (or ZoomImageView) for images, B4XGifView for animated gifs, ExoPlayer / MediaView / VideoPlayer for videos and... B4J - MediaView B4i - iUI8 (internal library) video/* Animated Gifs SMM_GIF B4XGifView image/gif.... SMM was built to work with B4XPages. It wasn't tested and not all features will work in non-B4XPages projects. SMM is an internal library. Start with the two examples. More information next... B4A Library [B4X] BLE 2 - Bluetooth Low Energy - Erel    Jan 4, 2023   (30 reactions)   tags: Bluetooth, Bluetooth Low Energy, BLE is an internal library now. It is included in the IDE. Example is based on B4XPages and will work with B4A and... Each per As String In Permissions rp.CheckAndRequest(per) Wait For B4XPage_PermissionResult... characteristic. - BLE is only supported on Android 4.3+. See the attached example. Note... B4A Library [B4X] B4XCollections - More collections - Erel    Nov 10, 2025   (39 reactions)   tags: xui B4XCollections is a b4x lib. It adds several cross platform collections. It includes a static module named B4XCollections which should be used to create new instances of the collections. You can either create new empty collections or pass the initial data. B4XSet - A set is a collection of unique... is preserved. Example: Dim s As B4XSet = B4XCollections.CreateSet For i = 1 To 1000 s.Add(Rnd(1, 5)) Next... of collections the values in the set can be of any type. B4XOrderedMap - Similar to a Map with two... Page: 1   2   3   4   5   6   7   |