how to display the contents of a vector in android?do i need to use TextView?
how can i do this?
Jonathan
2010-09-07 19:41:43
Do you know Java?
CaseyB
2010-09-07 20:45:37
+1
A:
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.
Voulnet
2010-09-07 21:08:19