vote up 0 vote down star

Im using GridLayout and Im having a 3*3 "matrix" (three rows and three columns). I want to place an image in the first row, and that image is supposed to span/stretch for three columns. Is that possible? (I know SWT/JFace has solved this by GridData and column/row span possibility)

flag

1 Answer

vote up 2 vote down check

I don't think it's possible to assign a column span to a cell inside GridLayout in LWUIT. Maybe you can try to use a BorderLayout and have something like this:

form.setLayout(new BorderLayout());
Image image = Image.createImage("/res/yourImage.png");
Label spanningCell = new Label(image);
spanningCell.setAlignment(Component.CENTER);
Container matrix = new Container(new GridLayout(3,3));
// add your components ...
// matrix.addComponent( ..);
// ...

form.addComponent(BorderLayout.NORTH, spanningCell);
form.addComponent(BorderLayout.CENTER, matrix);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.