tags:

views:

56

answers:

2

how to display the contents of a vector in android?do i need to use TextView?

A: 

yes, you need to use a TextView to put text on the screen.

CaseyB
how can i do this?
Jonathan
Do you know Java?
CaseyB
+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