property

  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 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...
  7. 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...
  8. 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...
  9. Dave O

    Wish Ability to add tooltips to views as a property in designer or code

    Android 8+ adds the ability to attach a text tooltip to a view. This post shows some wrapper code to do this with JavaObject. Just like elevation has been added for panels, I'd love to see tooltips added as a declarative property on views, so we could define them using the Designer or in simple...
  10. LucaMs

    B4J Code Snippet [Tool] Property generator (not only for B4J, of course)

    UPDATED. Read from Erel's post (#3) https://www.b4x.com/android/forum/threads/automatic-property-creation.126733/post-792672
  11. rleiman

    Android Question [SOLVED] - Accessing the Image File property of Drawable in code for an ImageView

    Greetings, In the designer, I placed an ImageView on my layout. The Drawable property has another property called Image File. When I typed the name of my ImageView defined in Globals in my coding, I followed it by a full stop, the auto-complete was displayed. In the list, I looked for Drawable...
  12. rleiman

    Android Question Forcing the virtual keyboard to display the "Done" button.

    Greetings, In my EditText field from the Designer, I have the "Force Done" property set. The "Done" button is not displayed on the virtual keyboard. Instead, the "Newline" button is displayed. Is there a way using coding to force the "Done" button to be displayed? Thanks.
  13. rleiman

    Android Question [SOLVED] Documentation for CameraKit

    Greetings, The CameraKit library is very nice but I'm looking to see if anyone has documented the library. I noticed there are some descriptions on some of the properties and functions of the library but I'm hoping for some more detailed documentation. In particular I'm wanting to find out...
  14. K

    Android Question Custom View Default Value

    I create custom class, I assign some property and its default value to it, then I add custom view in activity and, then I change default value of property in custom view. But its update default value in my activity. What is solution for this?
Top