Android: GridLayout spacing between items

2019-06-15 05:13发布

问题:

I have a grid layout which is filled with buttons, now i want the buttons to be more distant from each other, what code should i write? i tried to search it but only found a solution for GridView, not GridLayout.

回答1:

You can put margin to the buttons



回答2:

Instead of adding margin to each buttons, use android:useDefaultMargins="true"

It is better than adding margin to each buttons.