Reputation: 6774
how to display the contents of a vector in android?do i need to use TextView?
Upvotes: 0
Views: 435
Reputation: 2025
Iterate through the Vector elements using a for loop using the Vector's elementAt(index) function and display them accordingly in the Text View. Simple as that.
Upvotes: 1