settings

  1. Alexander Stolte

    Android Example [B4X] AS Settings - DescriptionItem

    https://www.b4x.com/android/forum/threads/b4x-xui-as-settings.147435/ This is a description item, this can be used to provide more information about a particular feature. Example AS_Settings1.MainPage.AddDescriptionItem("","Show sync help: when enabled, you'll see an explanation alert every...
  2. Alexander Stolte

    Android Example [B4X] AS Settings - ComboBox Property

    https://www.b4x.com/android/forum/threads/b4x-xui-as-settings.147435/ With this property, the user can quickly select one of several options via a combobox. It use the native combo box for each platform. Example 'ComboBox...
  3. Alexander Stolte

    Android Example [B4X] AS Settings - Text Property

    https://www.b4x.com/android/forum/threads/b4x-xui-as-settings.147435/ This property is for text input. Normal text, numbers or decimal numbers. Example 'Numeric Example AS_Settings1.MainPage.AddProperty_Text("Advanced","PropertyName_9","Text...
  4. Alexander Stolte

    Android Example [B4X] AS Settings - ActionClean Property

    https://www.b4x.com/android/forum/threads/b4x-xui-as-settings.147435/ This property is like the action property, only in a cleaner version. Here there is only an icon and the display text of the property. Example AS_Settings1.MainPage.AddProperty_ActionClean("Basic","PropertyName_8","Delete...
  5. Alexander Stolte

    Android Example [B4X] AS Settings - Action Property

    https://www.b4x.com/android/forum/threads/b4x-xui-as-settings.147435/ This property is used, for example, to manage properties that are on another page. Or to open links, open a picker so that the user can select something, a date for example. Example 'Action Button...
  6. Alexander Stolte

    Android Example [B4X] AS Settings - Boolean Property

    https://www.b4x.com/android/forum/threads/b4x-xui-as-settings.147435/ Example 'Boolean AS_Settings1.MainPage.AddProperty_Boolean("Basic","PropertyName_1","Boolean Property True","",Null,True) AS_Settings1.MainPage.AddProperty_Boolean("Basic","PropertyName_2","Boolean Property False","",Null,False)
  7. Alexander Stolte

    Android Example [B4X] AS Settings - SelectionList Property

    https://www.b4x.com/android/forum/threads/b4x-xui-as-settings.147435/ With this property, you can offer the user several options and he can then select either one or more. Example 'Second Page SettingPage2.Initialize(AS_Settings1,"Page #2")...
  8. Alexander Stolte

    Android Example [B4X] AS Settings with AS TimePickerDialog

    In this example it is shown how to realize time entries with the AS_Settings library. You need AS_Settings V2.00+ and AS_TimePickerDialog V1.02+ for this example. Private Sub B4XPage_Created (Root1 As B4XView) Root = Root1 Root.LoadLayout("frm_main") B4XPages.SetTitle(Me,"AS...
  9. Alexander Stolte

    Android Example [B4X] AS Settings with AS BottomDatePicker

    In this example it is shown how to realize date entries with the AS_Settings library. You need AS_Settings V2.00+ and AS_BottomDatePicker V1.01+ for this example. Private Sub B4XPage_Created (Root1 As B4XView) Root = Root1 Root.LoadLayout("frm_main") B4XPages.SetTitle(Me,"AS...
  10. Alexander Stolte

    Android Example [B4X] AS Settings with SegmentedTab

    This is an extension for the AS_Settings library, if it activates this extension, then you can select settings via a new type. Guide Download AS_SegmentedTab Copy it to your additional lib. folder Check the AS_SegmentedTab in the lib. list in your project Click in B4J, B4A or B4I Project ->...
  11. Alexander Stolte

    B4A Library [B4X] [XUI] AS Settings

    Introducing a new library that allows you to create your own settings page with minimal code. This library comes equipped with automatic saving and loading features, making it incredibly easy to manage your settings. It supports booleans, free text, numbers, comboboxes, action buttons and more...
  12. Pedro Caldeira

    iOS Question iOS 16 developer mode

    Hello All, Is there any way to develop an iOS 16.x App in B4i that doesn't require the Development mode to be active? I have some costumers that are concerned about security, having to set this definition. Or only with apps published in the Apple Store don't require this ? Thanks in advance.
  13. M

    Android Question Prevent text zoom

    Hi everyone, while testing my app, i noticed that when an user has the text zoom enabled in phone settings, all the sizes of my app are messed up. Is there a way to prevent the phone to change the sizes I set even if the zooming option is enabled in the settings of the phone? Thanks in advance
  14. Duque

    Android Question [RESOLVED]Open android.settings.APP_NOTIFICATION_SETTINGS

    Greetings This worked until https://www.b4x.com/android/forum/threads/i-need-open-a-app_notification_settings-via-intent.73532/#post-476761 VERSION.SDK_INT 25 Since then he says: VERSION.SDK_INT 26, 27, 28, 29, 30... "The application is not in the list of installed applications" After reading...
  15. M

    iOS Question Open Localization Services Setting programmatically

    Hi everyone, how can I open the localization services settings page? or better, open directly the section relevant to one of that apps? it is possibile? I already tried out this: App.OpenURL("app-settings:") But will open only the main page of the settings app Thanks in advance
  16. N

    Android Question Open a APP_NOTIFICATION_SETTINGS via intent - Android 9 and 10

    Hi, I need to open notifications settings via intent, on Android 7 I used the this code below and works fine, but in Android 9 or 10 it returns "activity not found". Dim in1 As Intent in1.Initialize("android.settings.APP_NOTIFICATION_SETTINGS", "") Dim jo As JavaObject in1.PutExtra("app_uid"...
  17. Chris160179

    B4R Question save custom Type to GlobalStore

    Hello Everybody, I want to save custom type variables in a GlobalStore slot. I can compile and run my code, but when I try to log the saved IP address, the ESP8266 crashes. My code: #Region Project Attributes #AutoFlushLogs: True #CheckArrayBounds: True #StackBufferSize: 300 #End...
  18. janderkan

    Wish Board Type and com-port

    I wish that B4R would save the 'Board Type' and the comport with the project !
  19. janderkan

    B4R Library rRadioHead - RF95 / Default settings

    If I look at the Arduino project 'rf95_client' it says: // Defaults after init are 434.0MHz, 13dBm, Bw = 125 kHz, Cr = 4/5, Sf = 128chips/symbol, CRC on In B4R I can change the frequency, but what are the other parameters ? I would love the option to change these parameters from B4R :) (Please)
  20. R

    Android Question App settings advice

    Developing a simple database app in B4A. Currently I handle application settings with File.ReadMap and File.WriteMap etc. and this seems to work well. What are the benefits of using instead the PreferenceActivity or AHPreferenceActivity libraries? RBS
Top