Tool [B4X] Forms Builder - Designer for B4XPreferencesDialog - Erel    Sep 22, 2019   (37 reactions)   tags: Forms Builder, B4XPreferences, Designer, preferance form builder that helps with building templates for B4XPreferencesDialog: https://www.b4x.com/android/forum..., "Example.json")) Click on the monitor icon to see the preferences dialog. Updates V1.66... B4XPreferencesDialog v1.65. V1.50 - Support for two new field types added to B4XPreferencesDialog v1.50... - Support for light themes. Make sure to also update B4XPreferencesDialog to v1.30. Make sure to download the latest version of B4XPreferencesDialog: https://www.b4x.com/android/forum/threads... B4A Library Dialogs2 library - an update to the original Dialogs library - agraham    Oct 7, 2021   (45 reactions) Note the separate download for an updated Dialogs2 class that fixes a bug in the original. I wrote the original Dialogs library many moons ago and it has suffered with age owing to the changes made... modal dialogs are deprecated in general they are still very convenient for use with my BasicIDE.... Therefore I have taken the Dialogs v4.01 source code and updated it into a new Dialogs2 library. Every dialog, except CustomLayoutDialog now supports both Show and ShowAsync. In past editions... B4A Question [solved] How to increase the default font size of Preference Dialog ? - AnandGupta    Jan 10, 2022 The text input of pref.dialog show very tiny text font size, see screen-shots 124029 I tried to increase the font size, as there are enough spaces below the text by using some codes from the forum search, but failed. How can I increase the default font size ? ( the example is from https://www.b4x.com/android/forum/threads/b4x-b4xpreferencesdialog-cross-platform-forms.103842/#posts)... B4A Question StatusBar Color. - Eme Fibonacci    Apr 9, 2016 Easy way to change the color of StaturBar? Maybe java in line? how use this in b4a? public abstract void setStatusBarColor (int color) Thank you.... 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.... B4A Library [B4X] [BitmapCreator] BlurredDialog - Erel    Oct 14, 2020   (25 reactions) ShowBlurredDialog_Example Dim p As B4XView = xui.CreatePanel("") p.SetLayoutAnimated(0, 0, 0, 300dip, 300dip) p.LoadLayout("Dialog") DialogCLV.DefaultTextBackgroundColor = xui.Color_Transparent DialogCLV.sv.Color = xui.Color_Transparent p.SetColorAndBorder(0xaa111111, 2dip...Edit: Don't use this class. Similar feature is implemented in B4XDialog (XUI Views). Set Dialog.BlurBackground =True https://www.b4x.com/basic4android/images/BlurredDialog.gif https://www... B4J Code Snippet JColorChooser : change your colors the Photoshop way - jkhazraji    Jul 31, 2024   (7 reactions) provides a pane of controls designed to allow a user to manipulate and select a color. The dialog has 5 tabs or panes that operate, in choosing the right color, the Photoshop way. They are : Swatches... color(Preview) However, the dialog, as the user presses 'OK', returns the color chosen in.... You can change it from the 'showDialog' method third parameter (initialColor). Drawing.... jcolor=jcolorchooser.RunMethod("showDialog",Array(jframe,"Select a color",jcolor... B4A Code Snippet [B4X] HexToColor and ColorToHex - Erel    Feb 24, 2020   (18 reactions) Converts hex color strings to a color int value and vice versa: Private Sub ColorToHex(clr As Int) As String Dim bc As ByteConverter Return bc.HexFromBytes(bc.IntsToBytes(Array As Int(clr))) End Sub Private Sub HexToColor(Hex As String) As Int Dim bc As ByteConverter If Hex.StartsWith("#") Then Hex = Hex.SubString(1) Else If Hex.StartsWith("0x") Then Hex = Hex.SubString(2) End If Dim ints() As Int = bc.IntsFromBytes(bc... B4J Question TableView cell alignment and color - BPak    Dec 6, 2013   tags: TableView Have built a program and managed to center all the cells of the TableView. .table-column .cell { -fx-alignment: CENTER; } However, I would like to be able to set the columns to different alignment and colors. My search has not found anything other than Cell Factories or something like that used in NetBeans?? Anyone have any CSS that might work out this problem for me?... B4A Code Snippet Change EditText Colors - Erel    Dec 26, 2017   (24 reactions)   tags: EditText Line color 'Enabled Dim Color(2) As Int = Array As Int(Active,Enabled) Dim CSL As JavaObject CSL.InitializeNewInstance("android.content.res.ColorStateList",Array As Object(States,Color...: SetBackgroundTintList(EditText1, Colors.Red, 0xFF0020FF) It will only be changed on Android 5+.... Page: 1   2   3   4   5   6   7   |