简体   繁体   中英

Android - Set Spacing between Buttons in GridLayout programmatically

How can I change the spacing between the buttons, so there is no Space anymore? They are created programmatically in a GridLayout.

enter image description here

You can remove spaces using the following code:

gridLayout = (GridLayout) findViewById(R.id.gridlayout);
gridLayout.setUseDefaultMargins(false);
gridLayout.setAlignmentMode(GridLayout.ALIGN_BOUNDS);
gridLayout.setRowOrderPreserved(false);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM