Best approach to display large amount of text on Blackberry
I have a list of store addresses that I want to display (about 100). The data i开发者_如何学Gos being read from a database.
Each address will look like this:
Main Store 29 Main Street, City, State Tel. (123) 456-7890 Fax. (123) 456-7890The name of the store will be bold and slighter larger font than the rest of the address.
Is my only option to read through the table, and for each record, add a new Textfield or LabelField to a VerticalManager?
Or is there a better approach to handle large amounts of text that still require some formatting?
Looked at RichTextField, but it doesnt have any kind of appendText method, just to setText
For this I would use the ListField, or if you want to have some data normally hidden, then revield by user action use the TreeField.
精彩评论