customlistview

  1. LucaMs

    B4A Library [B4X] CLVItemToolbox - custom view.

    Updated to v. 1.31 03/30/2022 Fixed: ItemRemoved declaration correct. Updated to v. 1.30 Added internal dialog (optional) to ask for confirmation of removal and many properties about this, included one to choose whether to use this dialog or not. Added the CLVItemToolbox1_ItemRemoved (Value As...
  2. Alexander Stolte

    Android Question [B4X] xCLV latest source code

    I work a lot with xCLV on all 3 platforms and sometimes the handling is different and things work differently, to better understand what is happening in the background it would be handy to have the actual source code to look up how certain things work. Where can I find the latest source code of...
  3. C

    Android Question xCustomListView - set horizontal orientation programatically?

    I've been migrating from loadLayout to programatically creating it (only in my clv, as I've measured the times and it's definitely faster). But the problem is that in the vertical CLV I'm putting nested horizontal CLVs inside. Loading it with designer made no problems, but I've realized that...
  4. DarkoT

    B4J Question CustomListView - tag without value

    Hi, need help for CustomList view... I'm filling custom listview with data from my sql database... I can not understand why is stored Tag empty... Any suggestion... My code: ' napolnimo combo z kupci Sub FillComboCustomer(Filter As String) Query = $"select cu_code, cu_name, cu_country...
  5. red30

    Android Question CLV + TabStrip + CheckBox. Strange bug.

    I am using TabStrip. Each page contains a CustomListView. Each CustomListView contains 5 CheckBoxes. If I call a subroutine in the Starter that calls a subroutine in the Main Activity, then on the second and subsequent pages of the TabStrip the checkbox for the CheckBox is not displayed...
  6. mik21

    Android Question xCustomListView crash

    I have simple activity which has xCustomListView with panel with edit view. Edit has FocusChanged proc. This proc read edit value and set label text in picture edit value is "12" and label text is "Kid 0". The "Clear CLV" button clear xCustomListView. If the cursor is parking on the edit...
  7. A

    Android Question [B4X] What to use for Netflix like layouts?

    Hi All, I just need guidence for how to create a Netflix like layout, meaning to scroll vertically and horizontally. I understand that customlistview can not work with nested customlistview. Also there is a post for nested customlistview but the limitation says that we won't be able to...
  8. epiCode

    B4A Library xCLV with Navigation Buttons

    Hi Everyone, I'm sharing a modified xCLV to display navigation button to scroll up or down to bottom. It is based on v1.72 shared by @Erel here -> Original Lib Thread Please note that it is not recommended by Erel to use .bas for xCLV, since other libs depend on it, so I'm sharing a jar...
  9. alirezahassan

    Android Question about CustomListView

    hi, i want to change the background of the CustomListView i try SC_Menu.GetBase.Color = xui.Color_Transparent SC_Menu.sv.Color = xui.Color_Transparent but it doesn't work what should i do? and also can i invisible Scroll bar? how? And can I move the position of the scroll bar to the right?
  10. ddefrain

    Android Question CustomListView Scroll with Timer

    Hi All. Is it possible to scroll a CustomListView with a Timer like manual scrolling (Not With JumpToItem) CustomListView Thank's in Advance Best Regards.
  11. DALB

    Android Question customlistView type

    Hello in this code which is in a loop, I wish to test every view. 'lst' is a list containing all the views of the designer For each ... Dim w As CustomListView=lst.Get(i) If w.AsView Is ScrollView(or CustomListView) Then lab=lst.Get(i) doSomething End...
  12. red30

    iOS Question B4XSeekBar in CustomListView ios

    B4XSeekBar is very difficult to use in CustomListView as you only need to move your finger in a straight line, otherwise the list will move. I already asked this question, but for Android and Erel I made an excellent solution. Is it possible to do the same in ios?
  13. red30

    iOS Question CLV works differently in ios

    I just started working with ios and got to CustomListView and realized that this element behaves quite differently from Android. Here I have collected all the differences I found from Android. Sub Process_Globals 'These global variables will be declared once when the application starts...
  14. M

    iOS Question Animated Navbar with scrolling

    Hi everyone. While using Facebook I noticed that the navbar is “linked” with the scrolling of the list. how can be implemented such a behavior in b4i? maybe using a clv or scrollview etc.. thanks in advance (gif link to see) p.s. what is the maximum file size for attachments in the forum...
  15. MitchBu

    iOS Question CustomListView.DefaultTextFont impaired by XUIViews

    I am encountering something that looks somewhat related to what is described here: https://www.b4x.com/android/forum/threads/ixui-with-xcustomlistview-compile-error.86329/ My code was working just fine, until I added XUIViews, and suddenly, DefaultTextFont is described as Unknown member. When...
  16. A

    iOS Question (Solved) How to get CustomListView on a page?

    Hi all. I have a problem. I'm using B4xTabStrip with 3 pages. Each page contains a label, a textfield and customlistview. Each CLV contains B4xSwithes a labels. Actually it's a schedule for a provider for each day of week. Provider clicks on a day of week in tab strip, selects Yes / No for...
  17. M

    Android Question Disable User interaction on a CustomListView

    Hi everyone, how can i disable the "click" on the various items in my customlistview? in B4i it's done like so: Dim p As Panel = clv.AsView p.UserInteractionEnabled = False But in B4A i didn't find anything like this. Even if I remove the check from "Enabled" in the designer, the items are...
  18. M

    Android Question RTL Horizontal xCustomListView

    Hi! I'm using xCustomListView Horizontally but I want it to place the items from right to left. How can I do That?
  19. rleiman

    Android Question [SOLVED] Extracting a value from a label in a custom list view clicked by a user

    Greetings, I'm trying to extract the value from a label that's in the custom list view item that the user clicks. Based on this thread and coding example, I set up this Type structure to get values from my custom list view when an item is clicked. Later I will be adding more items into the...
  20. A

    Android Question [SOLVED] Easier way for multiple entries per panel in CLV

    Hi All, I have a problem with clv that I solved with a not so good approach, so I am aiming someone can guide me how to prolerly use clv in this scenario. Basically I have jRDC2 data reflected, this data contains user number for example 7,8,9 as an example user 7 can have amount of 200 for...
Top