custom list view

  1. markfercho

    Spanish Obtener los datos de un panel al seleccionar un spinner

    Hola que tal a todos, tengo un proyecto el cual consiste en seleccionar los datos de un panel al momento de escoger cualquier opción de un spinner. El detalle aqui es que tengo una clvLista(custom list view) y dentro de ella esta un panel, el cual contiene dentro una...
  2. B

    Android Question Text Field Not Always Showing In Custom List View

    I have a clv which displays a list of two fields. A number and a text field, the data being obtained from a SQLite database. For some reason every so often when I load the list it does not show the last visible text field although the number is shown. Sometimes the text field in a couple of...
  3. R

    Android Question Custom List View - horizontal and vertical scrolling possible?

    Hi all, I'm working on a B4X project (it only needs to work for Android), and I am having trouble getting horizontal and vertical scrolling to work with a Custom List View. For vertical-only scrolling, this code works perfectly (and I'm able to click on a row, and pass its IdentityNo to the...
  4. Marcos Alves

    iOS Question Views Resize after Loading in CustomListView

    Hello all, Using a CLV in a B4i project I have some elements inside the items those must to be measured and adjusted to adapt the content. This question reflects on the CLV item panel height which is runtime calculated and adjusted. Some labels widths must to be adjusted also. The...
  5. Marcos Alves

    iOS Question Horizontal CustomListView as an Element in a Vertical CustomListView

    Hello, I need to add a horizontal CustomListView as an element of a Vertical CLV. The code that I'm using is: Private Sub createOfertas As B4XView Dim p As B4XView = xui.CreatePanel("") p.SetLayoutAnimated(0,0,0,100%x,200dip) p.LoadLayout("restaurantMenuOfertas") Dim...
  6. rleiman

    Android Question [SOLVED] - Selecting a custom list view item for a specific index number

    Greetings, In my custom list view I'm using this code to play and pause music. When the user clicks the play icon the icon changes to a pause icon so the user can pause the music. Clicking it again will make the icon a play icon. I know what the index is for the play / pause ImageView. I want...
  7. Marcos Alves

    B4J Question Custom List View Panel Refresh

    Hello all, In a customListView I'm trying to update some panels using this code: Dim p As B4XView = CLV1.GetPanel(i) p = createItem(orderId,clientName,orderStatus,orderValue) Where createItem is the same routine used to create the panel. But the Custom List View Panel isn't being updated...
  8. J

    Android Question How to Detect Keyboard Hide Event when Keyboard is Shown and Back Button is Pressed

    Hi All, Just as the title suggests, I want to know how to detect a keyboard hide event when you did not press the DONE or ENTER key but instead tapped the BACK button (or swiped BACK) to hide the keyboard. Specifically, I want to resize a custom list view into the available space once the soft...
  9. Marcos Alves

    Android Question Custom List View and Refresh

    Hello all, I noticed that when using Custom List View, when the start of a list is reached and a scroll try is made by user (like the gesture used to refresh a site in a browser), a shadow is showed by Android on the top of the CLV element indicating that there is no more items before the...
Top