I want display an array of doubles on the android screen, as I would have done in case of C, by using a statement such
for(i=0; i<10; i++)
printf("a = %d", a[i]);
I want to make a similar display on the android phone screen. What control is appropriate for this? My problem is not displaying a single variable's value, but multiple values on multiple lines, as I would do on a console in C. The number of lines to be displayed may change during each run of the application. What kind of controls are provided in Android for this?