Rachbob Member Licensed User Sep 21, 2019 #1 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: Sep 21, 2019
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?
DonManfred Expert Licensed User Longtime User Sep 21, 2019 #2 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
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"))