Jony
Jony

Reputation: 6774

android output display

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

Upvotes: 0

Views: 435

Answers (2)

Orca
Orca

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

CaseyB
CaseyB

Reputation: 25058

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

Upvotes: 0

Related Questions