Android Question Get Text from Customlist item

db0070

Active Member
Licensed User
Longtime User
I have this CustomListView that I populate with TextItems. Using GetValue, I can get the item number the user clicked on but how do I get the text?
B4X:
    dim List1 As CustomListView

    List1.AddTextItem("Tone A",0)
    List1.AddTextItem("Tone B",1)
    List1.AddTextItem("Tone C",2)
    List1.AddTextItem("Tone D",3)
 

DonManfred

Expert
Licensed User
Longtime User
use GetPanel to get the panel. Then get the text inside the Label on this panel
 
Upvote 0
Top