index

  1. 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")...
  2. M

    Bug? XSpeechRecognizer by MultiverseApp error occurred message - serious problem

    Hi eveyrone last year I made an app that uses XSpeechRecognizer by @Multiverse app library to detect words, infact you can see some posts of mine on the forum. However I received a report that some useres experienced a crash of the app when they start the Speech To Text. So I opened the project...
  3. rleiman

    Android Question [SOLVED] - Changing the text property of a label view in an xCLV at a specific index

    Greetings, I built a CLV using this coding: Activity.LoadLayout("SongList") ' This layout also contains a custom list view. CSelections.Initialize(clvSongList) CSelections.Mode = CSelections.MODE_SINGLE_ITEM_PERMANENT ' Make panel slide down out of site...
  4. R

    Android Code Snippet [B4X] Fast and stable 1D array index sorts

    These are for 1D arrays, type specific and stable sorts. There are 4 sets for Int, Double, Long and String arrays. They are converted from C code I found here: https://www.javatpoint.com/tim-sort I had some trouble getting this to work, but thanks to Jordi CP, this has all been sorted. Using...
  5. A

    Android Question Error while running the app

    Hi I runned my app on realise mode and I this message error has shown up: B4A Version: 8.00 Code analyzer. Error The specified argument is outside the range of valid values. Parameter name: index I tried to run the app without some subs, to find where is the problem, but I didnt find...
  6. Rob Bliss

    Android Question Restore Indexed Table

    Is there a way to restore an indexed table to the last state, for example on screen rotation. From what I can tell, it happens on activity_resume, however if activity_create is called, then it overrides it. Alternatively, is there a way to get the index of the item at the top of the screen in...
Top