Ralph
Ralph

Reputation: 465

Android: GridLayout spacing between items

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

Upvotes: 31

Views: 49191

Answers (2)

Jarin Rocks
Jarin Rocks

Reputation: 1015

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

It is better than adding margin to each buttons!

Upvotes: 28

Stefano
Stefano

Reputation: 3215

You can put margin to the buttons

Upvotes: 25

Related Questions