Sorry for the title but I don’t know how to summarize the question =/
I need to make a screen like this:

As you can see, it shows those “boxes”
with UI elements inside each one.
Each “box” is placed inside something like cells of some kind of table.
I thought it would be a good idea to represent the “boxes” as individual screens inside a TableLayoutManager with vertical scroll, but I don’t even know if that would be reliable.
Please someone tell me how to do something like that on BlackBerry
since I have no idea where to start.
I’m using the BlackBerry JRE 4.5.0
Thanks in advance!
EDIT:
I edit this answer just to show how good the solution provided by the user Nate was:

Here’s my suggestion. If you want the possibility of making this a table, with the title/text/image/button/footer pattern repeating, there should be a
Managersubclass that represents the layout for one row.As Arhimed noted, this solution assumes a relatively small number of rows (see comments below), to perform well.
First, I created a simple class that holds the data that one row would contain:
Then, here is the
Managersubclass that lays out only one row, which is the presentation of oneDataobject:And, here’s a
Screenclass that would create some sampleDataobjects, and use theRowManager:There’s one last utility UI class I used, to create colored labels:
This is how it looks on a OS 5.0 9550. I believe I stayed away from any APIs that wouldn’t be available on OS 4.5 (
setPadding()is undocumented, but usable). Obviously, the layout is highly hardcoded. You’ll need to adjust for other devices, but I have to leave you some work 🙂