Android Question how to call back the second line added with ( AddTwoLines) in a Listview

Rachbob

Member
Licensed User
i set a ListView using (AddTwoLines2). later when i call back the Item for a EditText i just get the value of the first line. what should I do to have also value of the second line?
 
Last edited:

DonManfred

Expert
Licensed User
Longtime User
Create a map and use this map as value. You then later get the map back.
B4X:
lv.AddTwoLines2("1","2",CreateMap("Line1": "1","Line2":"2", "OtherValue": "0815"))
 
Upvote 0
Top