I want to display an array of elements like a list inside a scrollView. It seems like people around here are not happy with putting ListViews inside ScrollViews, so I figured I might try and create my own list.
I have some entries (typically not more than 10 entries, entries are around a normal sentence in length) in an array that I want to iterate over, creating a TextView for each entry, so that each entry has it's own TextView. My concern is though that this may be bad practice, or that this kind of operation will simply slow down my application too much.
Am I being to concerned with performance here?