list

  1. Lakhtin_V

    Android Question Handle of events from a spinner

    Hello, I read in some posts that it is basically impossible to track spinner events programmatically. I liked this interface element, but I never use the constructor, I do everything programmatically. Is it possible to track spinner events now? Maybe there are other interface elements similar to...
  2. aeric

    B4J Library [B4X] DataAdapter

    DataAdapter-B4X A paging panel showing only 1 row of data (code modified from B4XTable) GitHub: https://github.com/pyhoon/DataAdapter-B4X
  3. Xela

    Italian B4A - Problemi Map & List

    Salve a tutti Mi sono incartato e non riesco ad uscirne. Sono nella fase finale di un'App per tablet che deve raccogliere gli ordini al punto vendita per poi passarli al magazzino. Nella fase di acquisizione mi servo di una Map dove di volta in volta salvo le righe con le informazioni del...
  4. Swissmade

    B4J Question B4J Bridge and List's

    Revere back to https://www.b4x.com/android/forum/threads/application-running-in-debug-mode-stop.165241/#post-1013040 I think I found something. When I debug using the B4J-Bridge to Linux Raspberry pi and go over a list in debug mode then I get this error. WARNING: An illegal reflective access...
  5. Swissmade

    Bug? Application Running in debug mode stop

    Hi all When I debug and run a application, then when I go with the cursor over the List-name because I like to see what is in there, Debug stops running List is initialize and not empty. I see this in many applications so it is not only 1 application. Maybe a small bug. Thanks for answering...
  6. Brian Michael

    B4J Code Snippet Search in a List

    Hello, here I come to you with a simple way to search for a word in a list of words. It is a very simple but very useful function. It is declared as ResumableSub so you can use Wait For and wait for it to finish searching to get the results. Example: Dim Fruits as List = Array as...
  7. Dave O

    B4A Class [B4A] DOListDialog - simple and customisable class

    DOListDialog is a free class that makes it easy to display a list dialog. Features: - Easy to use: supply a title and a list and you're good to go. - Auto-size the dialog to the minimum width or height needed, or leave it full-size. - Show or hide the Cancel button as needed. - Customize the...
  8. fat32

    B4A Library [B4X] [XUI] XQ MiniListButton

    A small button, that changes/cycles values from a list. Very useful, to allow user to select specific values from a list. Features: Change background and text color Customizable text label width/size Customizable icon label width/size Can adjust icon spacing/padding Change Event Reversible...
  9. Z

    Android Question does List contains Map

    I have a List of Maps, Maps are simple points, like (x,y) I'm trying to check if the first list contains elements(maps) from the second list... For i=0 To oList.Size -1 Dim m As Map=oList.Get(i) startX= m.Get("x") Log("X1:" & startX) startY= m.Get("y")...
  10. Alexander Stolte

    Android Example [B4X] AS Settings - SelectionList Property

    https://www.b4x.com/android/forum/threads/b4x-xui-as-settings.147435/ With this property, you can offer the user several options and he can then select either one or more. Example 'Second Page SettingPage2.Initialize(AS_Settings1,"Page #2")...
  11. yo3ggx

    Android Question XML2MAP and lists of maps

    Hello, Let's consider the following simple xml file as xmlstring. <main> <device> <memory> <param1>123456</param1> <param2>654321</param2> </memory> <memory> <param1>45678</param1> <param2>87654</param2>...
  12. R

    Android Question Updating a list of 1D string arrays

    Experimenting with B4XTable and in that the data is set with a list of arrays. Now in these arrays I have Excel dates and I need to alter these to tick dates and I do this with this code fragment: For c = 0 To arrDataTypes.Length - 1 If arrDataTypes(c) = "XD" Then...
  13. E

    Android Question Match list and csv file

    Hi everybody! I have a list like [1, 2, 3, 4, 5, 6, 7] and a csv file (text.csv) like this: game1, 1, 2, 3, 4, 5 game2, 2, 6, 7, 8, 9 game3, 10, 11, 12, 13 I need to seek in csv file wich list numbers match and presents something like this: game1: match 1 number game2: match 2 numbers game3...
  14. M

    Android Question [B4X] Update value of an item in CustomListView

    Hi everyone, is it possibile to update the value of an item of a custom list view? because i do not see any method for this, the only way i figured out is to: save the view using .GetPanel save the value using .GetValue update the value replace the item using .ReplaceAt and using the new value...
  15. carlos7000

    Spanish Problema al extraer datos de una lista. [Solucionado]

    Hola a todos. Estoy tratando de pasar parte del contenido de un archivo csv a una base de dato sqlite. Para ello escribí una funcion de prueba. Este es el código. Public Sub CargaDatos Dim SU As StringUtils Dim AirPorts As List = SU.LoadCSV(File.DirAssets, "ejemplo.csv", ",")...
  16. M

    iOS Question [B4X] Double column multiple card element sizes like Pinterest

    Hi everyone, what is the best way to achieve this type of list nowadays? I know I could do it by using two CLVs that scrolls together but I'm afraid of glitches (like jerky movements between the two on shitty-smartphone like mine) The features I'm interested in are: Two columns each column...
  17. carlos7000

    Spanish Inicializar CustomListView [Solucionado]

    Hola a todos. Tengo una pequeña aplacion que funciona, pero a veces se bloquea. Al bloquearse aparese un mensaje informando que un objeto List, no se ha iniciaalizado. Ya he verificado todo el codigo y todos los list se inicializan corretamente, creo. Pero note que un CustomListView no se...
  18. M

    iOS Question Get list of connected bluetooth devices

    Hi everyone, I'm just sketching ideas for an app, and before I start doing practical things I want to be sure that what I'm thinking is possibile to do. The question is: It's possibile to retrive a list of the currently connected bluetooth devices to my phone? Example: My iPhone can be...
  19. A

    Android Question b4xtable.setdata

    Hi, I try b4xtable, but when I call .setdata I have this error Col 0 Trasporto merci Col 0 Trasporto merci e rel. posizionamento Col 0 Trasporto rifiuti Col 0 Trasporto eccezionale Col 0 Sollevamento Col 0 Pulizia industriale Col 0 Ricondizionamento rifiuti Col 0 Demolizione/smontaggio impianti...
  20. aeric

    B4J Question [SOLVED] Refresh B4XPreferenceDialog Options from Updated List

    The options work very well in project without database. When I wanted to refresh the options from updated database, the option is not updated. In attached project, go to "Page 3" from MainPage and click on button "Show Options", the options show 3 items. Click on button "Add Option" then click...
Top