Android Question merging 2 lists possible in b4a?

MbedAndroid

Active Member
Licensed User
Longtime User
i got 2 lists, 2 same type data inserted
need to merge them
I can add each item into the other list one by one, by merging isnt possible?
like this
B4X:
list1 as list
list2 as list
list1.initialize
list2.initialize
..... do something with list 1 and 2
list1=list1+list2 'merging 2 lists together??
list1.add(list2) gives  a crash
 

DonManfred

Expert
Licensed User
Longtime User
Upvote 0
Top