Wish CreateMap and CreateList but shorter - aeric    Jan 23, 2025   (3 reactions) I use Maps and List a lot.
I love CreateMap() function.
However, sometimes I think it has a bit... of CreateMap, which behave the same but choose a word with less characters?
Suggestions:
Map()
Hash()
Pair... B4A Question size limit on CreateMap? (Caused by: java.lang.VerifyError: Verifier rejected class xxx: java.lang.String) - Alessandro71    Sep 11, 2025 is there a size limit on CreateMap?
as soon as I cross element number 354, the app crashes with
Caused by: java.lang.VerifyError: Verifier rejected class xxx: java.lang.String
splitting the Map in... B4J Question [B4X] CreateMap and Null values - LucaMs    Feb 1, 2022 I found that CreateMap accepts Null values as well, like so:
MyMap = CreateMap("Value"...
Return CreateMap("Value":Value)
End Sub
I would get an error: java.lang... B4A Question Map Collection - The most useful collection... - Erel    Nov 12, 2015   (22 reactions)   tags: Maps, MapColl .Put(2, "Monday") Log(days.Get(1)) You can also use CreateMap as a shorthand: Dim days As Map = CreateMap(1: "Sunday", 2: "Monday") Log(days.Get(1)) Iterating over the items is done with the For Each iterator: Dim days As Map = CreateMap(1: "Sunday", 2...) are important. For example: Dim map1 As Map = CreateMap("A": 1, 2: "B") Log(map1.Get... B4i Tutorial Notifications with actions - Erel    Sep 18, 2024   (9 reactions) = 0 Dim iosalert As Map = CreateMap("title": Title, "body": Body) message.Put("notification", iosalert) message.Put("apns", CreateMap("headers": _ CreateMap("apns-priority": "10"), _ "payload": CreateMap("aps": CreateMap("sound":"default"... is set here Else 'B4A message.Put("android", CreateMap("priority... B4A Library [B4X] CLVSwipe - xCustomListView Swipe actions and pull to refresh - Erel    Mar 2, 2025   (48 reactions)   tags: CLVSwipe, CLVSwipe - CustomListView, xuiCLV, xclv swipe pull, clv, myapp .ActionColors = CreateMap("Delete": xui.Color_Red, "Do Something Else": xui... B4A Library FirebaseAnalytics - Erel    Aug 14, 2025   (11 reactions)   tags: FirebaseAnalytics This library requires B4A v6+. Adding support for Firebase analytics: 1. Follow the Firebase integration tutorial: https://www.b4x.com/android/forum/threads/integrating-firebase-services.67692/#content 2. In Starter service: Sub Process_Globals Public analytics As FirebaseAnalytics End Sub Sub Service_Create analytics.Initialize End Sub That's it. You can manually send events with: Starter.analytics.SendEvent("login", CreateMap ("additional parameter"... Other jServer v2.05 - Erel    Mar 1, 2021   (5 reactions) This update adds a new method: Server.SetStaticFilesOptions. This method accepts a Map with configuration parameters that affect the way the server serves static files. For example: srvr.SetStaticFilesOptions(CreateMap("cacheControl": "max-age=3600")) The list of parameters is available here: http://download.eclipse.org/jetty/9.4.2.v20170220/apidocs/org/eclipse/jetty/servlet/DefaultServlet.html... B4A Question CLV , CreateMap - How i can get the specific Values - somed3v3loper (first post)    Jun 12, 2019   (1 reaction) I am not sure I understand your problem but this lists all keys and values
For Each k In mapaEscalonado.Keys
Log(k& " = "&mapaEscalonado.Get(k))
Next... Share My Creation JQuiz - API Server for B4XQuiz - aeric    May 18, 2023   (14 reactions) As String(uid, pwd)) Dim Map2 As Map = CreateMap("register": 1) Utility... Map2 As Map = CreateMap("login": 1) Utility.ReturnSuccess(Map2, Response... Do While res.NextRow List2.Add(CreateMap("id": res.GetInt("id"... List2.Add(CreateMap("id": res.GetInt("id"), _ "topic...(ans) Loop If qid > 0 Then Questions.Add(CreateMap("qid": qid... Page: 1   2   3   4   5   6   7   |