Tagged Questions

1
vote
1answer
60 views

Adding children to GridLayout dynamically

I have an app that will display a grid of the same image, based on the dimensions chosen by the user. I'm using GridLayout to build that grid, but so far, I have been unable to figure out a way to set ...
1
vote
2answers
373 views

GridLayout and number of rows and columns

Does GridLayout ever not honor the number of rows and columns you've specified if you don't fill it completely? I'm creating a GridLayout with 3 rows and 4 columns. However, I'm only adding 9 ...
0
votes
2answers
442 views

What are the parameters for a GridLayout?

private static final GridLayout layout = new GridLayout( 3, 1, 1, 0 ); in this line of code what do the numbers represent and how do you use them to arrange the checkboxes and buttons in the window? ...