• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Running over a vector

N_Skiller

Lurker
I have a Vector of Objects lets call them A , each vector has
fields that i want to draw on the screen like date , position ....
The main Activity contains that Vector.

I tried to do a dynamic textView :

Each object A contain an array of Textview but when i try to
intialize them:

for (int i=0;i<_viewArr.length;i++)
_viewArr=new TextView(this);

It says that this is from Type A and it doesnt understand how to build it
cause i guess it needs Context .

I couldnt figure out what to do.....
 
Back
Top Bottom