customlistview

  1. rleiman

    Android Question [SOLVED] - Some views are not working with the screen reader turned on

    Greetings everyone, I noticed that the following views do not recognise screen taps and dragging to scroll when the accessibility screen reader is turned on. I testing it with a Galaxy S9 running Android version 10. B4XSeekBar CustomListView These work ok only if the screen reader is turned...
  2. Reminisce

    Android Question Odd behavior with xcustomlistview and Android slider library.

    Hello guys, before adding the slider to my activity, MY XCLV(xcustomlistview) displays all item completely. Now I added the slider, and added my XCLV below it. The issue now is my 'XCLV doesn't scroll to the last item, I have adjusted the height of my XCLV severally, it just doesnt seem to...
  3. M

    [B4X] Double (Multi) Column CLV

    Hi everyone, recently i needed to implement an double column list in one of my app. I was ispired by an @Erel example, but i needed something slightly different, so i did this (i want to share with you, maybe could be useful to someone even if is a simple thing): (it support odd number of...
  4. M

    Android Question Double Column CustomListView

    hi everyone it's possibile to have a double column customlistview to achieve this kind of result? I've to do this also in B4i Thanks!
  5. Lucas Eduardo

    iOS Question CalcRelativeKeyboardHeight CustomListView

    Hello, i'm trying to calculate the keyboard with customlistview, i tryed this https://www.b4x.com/android/forum/threads/calcrelativekeyboardheight-example.64054/#content but without success. I did a code that works with panels and textfields or textviews inside a panel, when i tryed with...
  6. AKJammer

    Android Question Tag property in CustomListView ?

    I'm trying to get the name of the customlistview that is being accessed. Looking in the forum, storing the name in the tag seems to be the agreed method and I can see it in the designer. Problem is, there doesn't appear to be a tag property available at runtime. Was that an oversight or am...
  7. S

    Android Question Get text from Xcustomlistview - SQLite Database

    I created a Xcustom list view as shown in this thread, https://www.b4x.com/android/forum/threads/b4x-xui-xcustomlistview-cross-platform-customlistview.84501/ to get data i used SQLite database. To load the layout I used the following code as shown in the above thread, Sub Process_Globals...
  8. AKJammer

    Android Question Finding the type and name of a views parent

    Hey, Is there a way to find the type and name of a views parent? I'm using a couple CustomListViews in several tabs along with CLVSelections. When a user hits a button I can get the button info from Sender, but I'd like to be able to walk up and down the parent tree to find who hit it...
  9. M

    iOS Question CustomListView Remove item with animation

    hi everyone, i'm trying to achieve an cool effect when removing an item from a clv. i had a clv with some custom panels in it. each custom panel had a delete button. When the delte button is pressed I want the panel to exit from the screen animated, and all the item above scroll up to fill in...
  10. M

    Bug? xCustomListView ScrollToItem not working

    Hi, i'm trying to use the scrolltoitem function but when i call it, it doesn't show the last item totally. See how the last message isn't displayed totally
  11. M

    iOS Question CustomListView loaded layout can't be modified by code

    Hi everyone, i'm trying to adapt an example of a chat layout (android reference by @Douglas Farias) I want to change the property (width, height, position) of a panel in a customlistview (loaded with loadlayout). If I go step by step with the Debugger it seems to work, but as soon as it go on...
  12. aeric

    Android Question [Solved] CustomListView - Get item value

    From this tutorial: [B4X] [XUI] CustomListView - lazy loading / virtualization Type CardData (Title As String, Content As String, BitmapFile As String, Color As Int) 'new Color field Sub CLV1_ItemClick (Index As Int, Value As Object) UpdateItemColor(Index, Rnd(0xff000000, 0xffffffff)) End...
  13. D

    iOS Question Mutli Stacked Customlistviews

    I have been trying to solve this for a while. I have 6 customlistviews all stacked up on top of each other - each customlistview can have 10 or more labels. A slider selects which of the 6 customlistview is under focus. How best I can determine which label was clicked from which customlistview...
  14. D

    iOS Question CustomListView AddTextItem's text disappears

    I have a CustomListView to which I am adding a number of text items. When I load a background image my text disappears. How do I make the text Tone1, Tone2 etc to come to the front of the loaded image? In B4A I am able to set the background image and the text appears overlayed on the background...
  15. D

    Android Question Get Text from Customlist item

    I have this CustomListView that I populate with TextItems. Using GetValue, I can get the item number the user clicked on but how do I get the text? dim List1 As CustomListView List1.AddTextItem("Tone A",0) List1.AddTextItem("Tone B",1) List1.AddTextItem("Tone C",2)...
  16. C

    Android Question Custom List View how to Extract Edit.text Data?

    I have this Block of code Sub Find_items_customLSTview Dim i As Int Dim iv As ItemValue= CustomListViewPRODUTOSESCALONADOS.GetValue(i) Dim qtdeItems As Int For i=0 To CustomListViewPRODUTOSESCALONADOS.Size -1 qtdeItems = EditTextQTDECustomListView.Text...
  17. M

    Spanish Como recorrer un CustomListView

    Hola alguien me puede ayudar necesito recorrer el contenido de un CustomListView. Lo estoy intentado hacer de esta forma For i=0 To LV1.GetSize -1 Dim a As Int=LV1.GetValue(i) Next pero solo me obtiene un valor necesito obtener todos los valores que están dentro del listado. desde ya...
  18. C

    Custom List View duvida

    Boas pessoal, é a primeira vez que trabalho com o custom list view, e estou necessitando pegar os Index da CustomListView onde tiver o Valor da Quantidade > 0 tentei alguns metodos porem não obtive sucesso, alguem tem alguma solução ? Como a imagem descreve!
  19. Brandsum

    iOS Tutorial Add UIRefreshControl To CustomListView

    Original Tutorial by @narek adonts Create a standard class module (Let assume the name of the class is UIRefreshControl), Sub Class_Globals Private CSB As CSBuilder Private cb As Object Private en As String Private RefreshControl As NativeObject End Sub Public Sub...
  20. imbault

    Android Question CustomListView to JPG

    Let's take the xCustomListView Example : https://www.b4x.com/android/forum/threads/b4x-xui-xcustomlistview-cross-platform-customlistview.84501/#content There are 2 CustomListView, how to get the full image of the tallest clv : clv2 and save it in a jpg file? Thanks
Top