customlistview

  1. Albert Kallal

    Android Question Value parameter of xCustomListView

    I just went through Erel's custom list view example here: https://www.b4x.com/android/forum/threads/b4x-xui-xcustomlistview-cross-platform-customlistview.84501/#content I should watch more of these - they are actually helpful! - group hug for the "tiny" bit of info where it is explained the...
  2. LucaMs

    B4J Library [B4X] LM xCustomListView 1.73

    Some features added to the last Erel's xCustomListView (v. 1.71). As you know, it works on the three platforms (B4A, B4J, B4i). 'xCustomListView v1.73 LM ' Added MultipleSelection: ' Property MultipleSelection ' Property SelectedIndices ' Property SelectedValues '...
  3. Rubsanpe

    Bug? [SOLVED is not a bug] CustomListView's ScrollToItem function not working for me

    Hi, I'm trying to use CustomListView's ScrollToItem function to move the contents of the list to a new position. It is not working in the latest version of the CustomListView library. I have tested it in the example of the forum that uses the class instead of the library and in that case it...
  4. J

    Android Question CardList B4XView Search & Gap between Panel

    HI Erel , How I can add a search option to this CustomListView . the requirement is to filter the view according to the search text. also how i can reduce the gap between each panel items. sample project attached regards Jithesh M
  5. D

    Android Question Load PDF pages in CustomListView - zoom enabled

    How can I show a multi page pdf in a CustomlistView and set each page so that the user is able to zoom the image? I also tried using Webview but it does not work:- dim image as imageview Private CLV1 As CustomListView For i = 0 To pdf.PageCount-1 Dim p As B4XView =...
  6. D

    Android Question CustomListView - 2 Directional Scrolling

    I have a CustomListView that scrolls horizontally. I then have an element in each panel which scrolls vertically. If I try to scroll vertically it tends to scroll left to right and gets stuck scrolling vertically. I noticed if I scroll super straight, I can get it to scroll vertically. This...
  7. D

    Android Question Customlistview Snap to Card

    Hi, I'm trying to modify the CustomListView.bas module as follows: 1. I want it to snap to each panel. Like the way it snaps when executing a Jump to Item. 2. I want it to only be activated when a user swipes. The behaviour could basically be described as swiping between cards/panels. Swipe...
  8. Scotter

    Android Question Class not found: b4a.example.customlistview

    Hi - I've been using xCustomListView v1.20. Works great! No errors but the following warning appears in my log: Class not found: b4a.example.customlistview, trying: b4a.p2e.customlistview Ideas? Thanks!
  9. Multiverse app

    Android Question MapFragment with CustomListView

    The Goal is to Add MapFragment with Customlistview while using LazyLoading. After the mapfragment is ready, add a marker to all of the maps. The Problem is that at VisibleRangeChanged, mfclvorders_Ready is called for only the last MapFragment. Therefore, All the maps except the last are left...
  10. G

    Android Question Change CustomListView's width in code

    Hi All! I have been trying to adapt the width of a customlistview based on current display width. I have tried to change it by usingclv1.sv.width=70%x in Activity_Create. Is there a better way to do this?
  11. R

    Android Question Problem with CustomListView with Structure as Value

    Hi. I am using a CustomListView (xCustomListView v1.64 from Erel) and when adding items the value does not behave well when it is a structure (Type). CustomListView1.Add(CreateItem(Line1, Line2, Line3), Structure1) It works perfect when the value is a number or a string, but when it is a...
  12. S

    Android Question CustomListView from Starter

    Hi How can I use CustomListView in Starter I get error Cannot access activity object from sub Progress_global For i = 1 To 20 Cust_lisview.Add(CreateListItem($"Item #${i}"$, Listv_fyrirtaki.AsView.Width, 60dip), $"Item #${i}"$) Next
  13. liurenwoxing

    Android Question Customlistview questions

    Hello , When i use the Customlistview ,how can i get or set each item's lable,button,imageview attribute?
  14. K

    Android Question customlistview setlayoutanimated

    Hii Expert I designing CustomListView in my app. I need it five different times and in five different look with other layout I have issue with p.SetLayoutAnimated(0,0,0,60%x,35%x) I am confuse about how to give width and height, so is their is any way to get panel used height also if i'm...
  15. K

    Android Question CustomListView running too slow

    I have same problem again. my customlistview taking more than 4 min for nearly 1200 records of sqlite 7.12.00 7.16.00 my code is : cursor = Starter.year.ExecQuery("select * from GL where FBOOK='G001' order by FDESC") Dim...
  16. Maodge

    Android Question [solved]Why XCustomListView display incorrect , CustomListview display right

    hi, i'm confuse of XCustomListView and CustomListview. in project using CustomListview, add items code is For i = 0 To 29 Dim colors1 As Int Dim csb As CSBuilder colors1 = Colors.RGB(Rnd(0,255),Rnd(0,255),Rnd(0,255)) csb.Initialize.Color(colors1).Append("#...
  17. LucaMs

    Android Question StateManager and CustomListview

    [Probably I should have written this post in "Bugs & wishlist"] If I have not made any mistakes, it seems to me that StateManager can not rebuild (save & restore) CustomListviews (let alone xCustomListviews) and their contents.
  18. M

    Android Question customlistview

    hi!, its possible to navigate thru the items (one by one) in a customlistview with a keybord (arrows) and highlight the actual position?
  19. RichardI

    Spanish Problemas al escalar un CustomListView en dispositivos diversos

    Tengo una samsung tablet con un display de 1280x752 escala = 1 (160dpi) y un teléfono celular con un display de 5 pulgadas y con las siguientes características: 480x798, escala = 1.5 (240 dpi). Estoy creando un CustomListView de forma dinámica pero me encuentro que cuando ejecuto el código en...
  20. A

    Android Question customlistview set panel view

    Dear all, I am working with a customlistview with severla edittextboxes, buttons etc. when entering from one editbox to another, I want to make from the enterpressed command on the last textbox that he jumps to the first of the following panel. There is a getpanel command but is there also a...
Top