Re: [android-developers] Re: Creating A Bunch of Textviews Programmatically

2010-04-19 Thread Mark Murphy
Matthew Patience wrote: What if I use a String Builder to create just a giant TextView with all of the comments spanning across a ScrollView? Will this still be a bad idea and take up more memory? That depends on how many comments you have. If you have only a few KB of comments, that's not

Re: [android-developers] Re: Creating A Bunch of Textviews Programmatically

2010-04-19 Thread social hub
if you are just displaying comments probably u can just use Textview itself (u can enable multiline and set text directly from html Html.fromHtml(string) with some success.. you can try ) prob inside a scrollview. if its just a few kb as Mark mentioned if its more than a kb or so then its better