customlistview

  1. Mark Read

    B4J Question [Solved] How to use the click event on SimpleMediaManager

    I am having trouble with the click event when using the example 2 from Erel (here). I have only changed where the images are coming from but as in the example, each line contains 4 images and 4 labels. The click event fires as required but I need the label text. I know its probably simple but I...
  2. Lucas Siqueira

    Bug? Resizing a panel or a label inside a customlistview not work on b4i

    why does resizing a panel or a label inside a customlistview not work on b4i? (on android it works normally) if you try to resize outside the customlistview, it works normally #Region Shared Files #CustomBuildAction: folders ready, %WINDIR%\System32\Robocopy.exe,"..\..\Shared Files"...
  3. W

    B4J Question [B4J] B4XListTemplate font change not working for its CLV?

    Attached the test project and the screenshot. The code is just this: Dim ListTemplate As B4XListTemplate Dim dlg As B4XDialog dlg.Initialize(MainForm.RootPane) dlg.Title = "Title - this is default font 12" dlg.TitleBarFont = xui.createDefaultFont(12)...
  4. epiCode

    B4A Library [B4X] Expander v2 : Expandable CustomListView

    Expander : Expandable CustomListView based on Erel's Expandable List View, xCustomListView and XUI I needed to modify Expandable List View to customize it to my need and hence this Library. Features: ~ Easy to Configure. No layouts. No Images. ~ Does not use layout. So it is slightly faster...
  5. mcqueccu

    iOS Question GestureRecognizer and Customlistview text pinch zoom

    I am currently looking at the Gesture Recognizer library and it seems a bit complicated. I want to use the Pinch Zoom part to increase the text size of a single item added to the custom listview, any help or direction will be much appreciated. Thank you
  6. Humberto01

    Spanish Diferencias acerca de listview y CustomListview

    Hola y M. Buenos días para todos. Me llamo Humberto soy de Argentina, Entre Ríos, Gualeguaychú. Quería aprovechar esta consulta para presentarme y aprender a usar este sitio (además del Foro de consulta). Vengo de usar Android Studio y por accidente me topé con B4a el que comencé a mirar al...
  7. epiCode

    B4J Library [B4J] [Class] CLVDragger Mod v8 with OrderChanged Event

    CustomListView with Drag and Drop Support for items based on Erel's Class CLVDragger Modifications: v8 1. Added Callback Support 2. Added Event: OrderChanged ( ItemIndex as int , NewIndex as Int) ItemIndex: Item which was dragged NewIndex: Where item was dropped
  8. A

    Android Question Error when inserting 2 panels on a customlistview (Comparison method violates its general contract!)

    Hi, I have a Customlistview with some panels on it. on the panels are some textboxes. when inserting (not add) a couple of new panels (2 or 3) and i enter(press) from 1 textbox to another, I get the following message: java.lang.IllegalArgumentException: Comparison method violates its general...
  9. Alexander Stolte

    B4A Class [B4X] SnapCLVAdvanced - Move to the nearest item - Instant snap

    I took the original CLVSnap code from @Erel and modified it to create a new class. With this class you can decide if you want to have an instant snap or if you want the list to snap only when the list stops moving. I spend a lot of time in creating views, some views i need by my self, but some...
  10. LucaMs

    B4A Library [B4X] CLVItemToolbox - custom view.

    Updated to v. 1.40 02/23/2026 ' Fixed: icons layout was incorrect when ShowCheck / ShowEdit / ShowRemove were disabled in the Designer. 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...
  11. 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...
  12. 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...
  13. 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...
  14. 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...
  15. 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...
  16. 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...
  17. 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...
  18. 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?
  19. 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.
  20. 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...
Top