properties

  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. R

    B4J Question B4JVLCj Library - Exposing Video Properties

    I have just been playing with the excellent library B4JVLCj by @moster67 that allows you embed VLC media player within a B4J desktop application. Within certain limitations it all seems to work as advertised. In trying to push it a little further I would like to extract the Video Codec name or...
  9. 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 ->...
  10. 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...
  11. N

    B4J Question Retrieving the "Name" property of a custom view

    Hello community, and thanks for a great product @Anywhere Software. I am creating a custom view in B4J that requires the Name property set by the user in the designer grid. I know I can get the event name, text properties through the lbl, size properties through Base, as well as the custom...
  12. Guenter Becker

    Android Question Custom View / Designer

    Hello, my question is focused on building a desginerable custom control. I knew that I can set/retrive the Designer "Text Properties" by code using the *Lbl View" of the "Public Sub DesignerCreateView (Base As Object, Lbl As Label, Props As Map)". But I'm missing to do the same with the...
  13. Guenter Becker

    Android Question Custom/Native View Designer Properties

    Hello, hope you are fine. Today I have a question about developing a Custom View. For example if I like to make a custom view on base on an EditTextbox to enhance the native views features I know how to do that with the custom view xui class. But if I go to use the custom view in the designer...
  14. 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...
  15. DALB

    Android Question Is a list able to keep panels properties ?

    Hello eveyone. Technical question about "what can a list do ?" Is a list able to store panels like this : list.add(panel(i)) if yes, are all the properties of each panel stored in the list enabled or not ? I ask this to know if I can call any panel with it all properties in my code from the...
  16. M

    Android Question TabstripViewPager Properties by code

    Hi everyone, i would like to use the TabstripViewPager and i need to change classic properties by code, like "visible", "height", "width", "setAnimatedLayout" etc.. but if i write TabstripViewPager. nothing shows up after the dots excepts for: CurrentPage, DesignerCreateView, LoadLayout and...
  17. 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...
  18. Alexander Stolte

    Wish [B4X] XUI Views B4XSwitch properties per code

    Hey, i create the views per code and it would be very useful for me, if the: Value On Color Off Color Thumb Color properties setable per code. Thanks
  19. R

    Android Question Exposing Spinner Properties

    Being able to set view properties by collection is so useful. I have a tablet application that has a complicated interface containing many spinners to set parameters. It would be very useful to set properties like this..... Instead by many single lines of code.... For Each V As View In...
  20. LWGShane

    Bug? Do properties in "Main" work? [Answer: No - By design]

    From another class: Trying to set the "Status" property that's in the "Main" class - even with a lowercase "set" the Intellisense still displays the full name.
Top