I’m building a chat application.
Inside my chat messages view i have an Activity which render last 20 messages and add them to a ScrollView programmatically.
It actually works pretty good and fast.
After finishing it I’ve stop to think and realized that i could have done it more easily (and maybe more efficient) using a ListView.
Is it really true? should i take the effort and change the view to a ListView ?
I think, yeah its more efficient to use a listView because of its properties. And what you did with your scroll view has the same function as a ListView. You’re remaking the wheel I think. Here‘s a good example 🙂