Hi guys,
for my librarie i need this hashmap structure.
Is this in b4a possiple?
Is this the right structure for a hashmap in b4a?
Best regards from Germany
for my librarie i need this hashmap structure.
B4X:
// Create a hashMap to add additional information to the transaction
HashMap<String,String> additionalInfo = new HashMap<String, String>(3);
additionalInfo.put("MyAppUser","John.Smith@email.com");
additionalInfo.put("InternalUserID","334253");
additionalInfo.put("Color","red");
Is this in b4a possiple?
Is this the right structure for a hashmap in b4a?
B4X:
Dim addi as String
addi = "{MyAppUser=,John.Smith@email.com=};{InternalUserID=,334253=};{Color=,red=}"
SU.additionalInfo1 = addi
Best regards from Germany