GridLayout. How set space between columns?
Android Studio 3.1, Java 1.8, Gradle 4.1
I use GridLayout.
All work fine.
But I need to set space (e.g. 10dp) between columns and space between rows.
How I can do this?
main.xml:
<GridLayout
android:id="@+id/categoriesContainer"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:verticalSpacing="10dp"
app:layout_constraintEnd_toEndOf="@+id/birthDateContainer"
app:layout_constraintStart_toStartOf="@+id/birthDateContainer"
app:layout_constraintTop_toBottomOf="@+id/birthDateContainer">
</GridLayout>
profile_category_active.xml
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<android.support.constraint.ConstraintLayout
android:id="@+id/profileCategoryContainer"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/categoryNameTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginEnd="30dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="30dp"
android:layout_marginStart="5dp"
android:layout_marginTop="5dp"
android:ellipsize="end"
android:maxLines="1"
android:text="TextView" />
</android.support.constraint.ConstraintLayout>
</layout>
Activity: I add row programatically:
GridLayout gridLayout = findViewById(R.id.categoriesContainer);
gridLayout.setColumnCount(columnCount);
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
for (int index = 0; index < 10; index++) {
View profileCategoryActive = inflater.inflate(R.layout.profile_category_active, null, false);
categoriesGridContainer.addView(profileCategoryActive);
ConstraintLayout profileCategoryContainer = profileCategoryActive.findViewById(R.id.profileCategoryContainer);
ViewGroup.LayoutParams profileCategoryContaineParams = profileCategoryContainer.getLayoutParams();
profileCategoryContaineParams.width = (int) AndroidUtil.dpToPx(this, categoryItemWidth);
profileCategoryContainer.setLayoutParams(profileCategoryContaineParams);
TextView categoryNameTextView = profileCategoryActive.findViewById(R.id.categoryNameTextView);
categoryNameTextView.setText("Ind " + profileCategoryContaineParams.width);
}

add a comment |
Android Studio 3.1, Java 1.8, Gradle 4.1
I use GridLayout.
All work fine.
But I need to set space (e.g. 10dp) between columns and space between rows.
How I can do this?
main.xml:
<GridLayout
android:id="@+id/categoriesContainer"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:verticalSpacing="10dp"
app:layout_constraintEnd_toEndOf="@+id/birthDateContainer"
app:layout_constraintStart_toStartOf="@+id/birthDateContainer"
app:layout_constraintTop_toBottomOf="@+id/birthDateContainer">
</GridLayout>
profile_category_active.xml
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<android.support.constraint.ConstraintLayout
android:id="@+id/profileCategoryContainer"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/categoryNameTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginEnd="30dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="30dp"
android:layout_marginStart="5dp"
android:layout_marginTop="5dp"
android:ellipsize="end"
android:maxLines="1"
android:text="TextView" />
</android.support.constraint.ConstraintLayout>
</layout>
Activity: I add row programatically:
GridLayout gridLayout = findViewById(R.id.categoriesContainer);
gridLayout.setColumnCount(columnCount);
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
for (int index = 0; index < 10; index++) {
View profileCategoryActive = inflater.inflate(R.layout.profile_category_active, null, false);
categoriesGridContainer.addView(profileCategoryActive);
ConstraintLayout profileCategoryContainer = profileCategoryActive.findViewById(R.id.profileCategoryContainer);
ViewGroup.LayoutParams profileCategoryContaineParams = profileCategoryContainer.getLayoutParams();
profileCategoryContaineParams.width = (int) AndroidUtil.dpToPx(this, categoryItemWidth);
profileCategoryContainer.setLayoutParams(profileCategoryContaineParams);
TextView categoryNameTextView = profileCategoryActive.findViewById(R.id.categoryNameTextView);
categoryNameTextView.setText("Ind " + profileCategoryContaineParams.width);
}

Possible duplicate stackoverflow.com/questions/21455495/…
– Tenten Ponce
Dec 21 '17 at 7:40
And also here stackoverflow.com/questions/35270404/…
– Tenten Ponce
Dec 21 '17 at 7:40
what is the parent layout of yourmain.xml
?
– Shambhu
Dec 21 '17 at 8:55
Parent is ConstraintLayout
– Alex
Dec 21 '17 at 8:59
add a comment |
Android Studio 3.1, Java 1.8, Gradle 4.1
I use GridLayout.
All work fine.
But I need to set space (e.g. 10dp) between columns and space between rows.
How I can do this?
main.xml:
<GridLayout
android:id="@+id/categoriesContainer"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:verticalSpacing="10dp"
app:layout_constraintEnd_toEndOf="@+id/birthDateContainer"
app:layout_constraintStart_toStartOf="@+id/birthDateContainer"
app:layout_constraintTop_toBottomOf="@+id/birthDateContainer">
</GridLayout>
profile_category_active.xml
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<android.support.constraint.ConstraintLayout
android:id="@+id/profileCategoryContainer"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/categoryNameTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginEnd="30dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="30dp"
android:layout_marginStart="5dp"
android:layout_marginTop="5dp"
android:ellipsize="end"
android:maxLines="1"
android:text="TextView" />
</android.support.constraint.ConstraintLayout>
</layout>
Activity: I add row programatically:
GridLayout gridLayout = findViewById(R.id.categoriesContainer);
gridLayout.setColumnCount(columnCount);
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
for (int index = 0; index < 10; index++) {
View profileCategoryActive = inflater.inflate(R.layout.profile_category_active, null, false);
categoriesGridContainer.addView(profileCategoryActive);
ConstraintLayout profileCategoryContainer = profileCategoryActive.findViewById(R.id.profileCategoryContainer);
ViewGroup.LayoutParams profileCategoryContaineParams = profileCategoryContainer.getLayoutParams();
profileCategoryContaineParams.width = (int) AndroidUtil.dpToPx(this, categoryItemWidth);
profileCategoryContainer.setLayoutParams(profileCategoryContaineParams);
TextView categoryNameTextView = profileCategoryActive.findViewById(R.id.categoryNameTextView);
categoryNameTextView.setText("Ind " + profileCategoryContaineParams.width);
}

Android Studio 3.1, Java 1.8, Gradle 4.1
I use GridLayout.
All work fine.
But I need to set space (e.g. 10dp) between columns and space between rows.
How I can do this?
main.xml:
<GridLayout
android:id="@+id/categoriesContainer"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:verticalSpacing="10dp"
app:layout_constraintEnd_toEndOf="@+id/birthDateContainer"
app:layout_constraintStart_toStartOf="@+id/birthDateContainer"
app:layout_constraintTop_toBottomOf="@+id/birthDateContainer">
</GridLayout>
profile_category_active.xml
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<android.support.constraint.ConstraintLayout
android:id="@+id/profileCategoryContainer"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/categoryNameTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginEnd="30dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="30dp"
android:layout_marginStart="5dp"
android:layout_marginTop="5dp"
android:ellipsize="end"
android:maxLines="1"
android:text="TextView" />
</android.support.constraint.ConstraintLayout>
</layout>
Activity: I add row programatically:
GridLayout gridLayout = findViewById(R.id.categoriesContainer);
gridLayout.setColumnCount(columnCount);
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
for (int index = 0; index < 10; index++) {
View profileCategoryActive = inflater.inflate(R.layout.profile_category_active, null, false);
categoriesGridContainer.addView(profileCategoryActive);
ConstraintLayout profileCategoryContainer = profileCategoryActive.findViewById(R.id.profileCategoryContainer);
ViewGroup.LayoutParams profileCategoryContaineParams = profileCategoryContainer.getLayoutParams();
profileCategoryContaineParams.width = (int) AndroidUtil.dpToPx(this, categoryItemWidth);
profileCategoryContainer.setLayoutParams(profileCategoryContaineParams);
TextView categoryNameTextView = profileCategoryActive.findViewById(R.id.categoryNameTextView);
categoryNameTextView.setText("Ind " + profileCategoryContaineParams.width);
}


edited Dec 21 '17 at 12:04
Alex
asked Dec 21 '17 at 7:38
AlexAlex
172212
172212
Possible duplicate stackoverflow.com/questions/21455495/…
– Tenten Ponce
Dec 21 '17 at 7:40
And also here stackoverflow.com/questions/35270404/…
– Tenten Ponce
Dec 21 '17 at 7:40
what is the parent layout of yourmain.xml
?
– Shambhu
Dec 21 '17 at 8:55
Parent is ConstraintLayout
– Alex
Dec 21 '17 at 8:59
add a comment |
Possible duplicate stackoverflow.com/questions/21455495/…
– Tenten Ponce
Dec 21 '17 at 7:40
And also here stackoverflow.com/questions/35270404/…
– Tenten Ponce
Dec 21 '17 at 7:40
what is the parent layout of yourmain.xml
?
– Shambhu
Dec 21 '17 at 8:55
Parent is ConstraintLayout
– Alex
Dec 21 '17 at 8:59
Possible duplicate stackoverflow.com/questions/21455495/…
– Tenten Ponce
Dec 21 '17 at 7:40
Possible duplicate stackoverflow.com/questions/21455495/…
– Tenten Ponce
Dec 21 '17 at 7:40
And also here stackoverflow.com/questions/35270404/…
– Tenten Ponce
Dec 21 '17 at 7:40
And also here stackoverflow.com/questions/35270404/…
– Tenten Ponce
Dec 21 '17 at 7:40
what is the parent layout of your
main.xml
?– Shambhu
Dec 21 '17 at 8:55
what is the parent layout of your
main.xml
?– Shambhu
Dec 21 '17 at 8:55
Parent is ConstraintLayout
– Alex
Dec 21 '17 at 8:59
Parent is ConstraintLayout
– Alex
Dec 21 '17 at 8:59
add a comment |
2 Answers
2
active
oldest
votes
In xml GridLayout, add:
app:useDefaultMargins="true"
and you get a distance between columns and rows.
Getting on android:useDefaultMargins="true"
– Jarin Rocks
Feb 13 at 5:43
add a comment |
I found solution:
- Use android.support.v7.widget.GridLayout
- Here programatically set margin and full size horizontally
O activity:
View profileCategoryActive = inflater.inflate(R.layout.profile_category_active, null, false);
categoriesGridContainer.addView(profileCategoryActive);
// set ndroid:layout_columnWeight="1" programatically
GridLayout.LayoutParams params = new GridLayout.LayoutParams(GridLayout.spec(
GridLayout.UNDEFINED, GridLayout.FILL, 1f),
GridLayout.spec(GridLayout.UNDEFINED, GridLayout.FILL, 1f));
params.width = (int) AndroidUtil.dpToPx(this, categoryItemWidth);
params.bottomMargin = (int) tilePreviewLeftRightMarginDp;
params.topMargin = (int) tilePreviewLeftRightMarginDp;
params.rightMargin = (int) tilePreviewLeftRightMarginDp;
params.leftMargin = (int) tilePreviewLeftRightMarginDp;
ConstraintLayout profileCategoryContainer = profileCategoryActive.findViewById(R.id.profileCategoryContainer);
profileCategoryContainer.setLayoutParams(params);
TextView categoryNameTextView = profileCategoryActive.findViewById(R.id.categoryNameTextView);
categoryNameTextView.setText("Ind " + params.width);
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f47920094%2fgridlayout-how-set-space-between-columns%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
In xml GridLayout, add:
app:useDefaultMargins="true"
and you get a distance between columns and rows.
Getting on android:useDefaultMargins="true"
– Jarin Rocks
Feb 13 at 5:43
add a comment |
In xml GridLayout, add:
app:useDefaultMargins="true"
and you get a distance between columns and rows.
Getting on android:useDefaultMargins="true"
– Jarin Rocks
Feb 13 at 5:43
add a comment |
In xml GridLayout, add:
app:useDefaultMargins="true"
and you get a distance between columns and rows.
In xml GridLayout, add:
app:useDefaultMargins="true"
and you get a distance between columns and rows.
answered Nov 21 '18 at 22:48


Boris KarloffBoris Karloff
755718
755718
Getting on android:useDefaultMargins="true"
– Jarin Rocks
Feb 13 at 5:43
add a comment |
Getting on android:useDefaultMargins="true"
– Jarin Rocks
Feb 13 at 5:43
Getting on android:useDefaultMargins="true"
– Jarin Rocks
Feb 13 at 5:43
Getting on android:useDefaultMargins="true"
– Jarin Rocks
Feb 13 at 5:43
add a comment |
I found solution:
- Use android.support.v7.widget.GridLayout
- Here programatically set margin and full size horizontally
O activity:
View profileCategoryActive = inflater.inflate(R.layout.profile_category_active, null, false);
categoriesGridContainer.addView(profileCategoryActive);
// set ndroid:layout_columnWeight="1" programatically
GridLayout.LayoutParams params = new GridLayout.LayoutParams(GridLayout.spec(
GridLayout.UNDEFINED, GridLayout.FILL, 1f),
GridLayout.spec(GridLayout.UNDEFINED, GridLayout.FILL, 1f));
params.width = (int) AndroidUtil.dpToPx(this, categoryItemWidth);
params.bottomMargin = (int) tilePreviewLeftRightMarginDp;
params.topMargin = (int) tilePreviewLeftRightMarginDp;
params.rightMargin = (int) tilePreviewLeftRightMarginDp;
params.leftMargin = (int) tilePreviewLeftRightMarginDp;
ConstraintLayout profileCategoryContainer = profileCategoryActive.findViewById(R.id.profileCategoryContainer);
profileCategoryContainer.setLayoutParams(params);
TextView categoryNameTextView = profileCategoryActive.findViewById(R.id.categoryNameTextView);
categoryNameTextView.setText("Ind " + params.width);
add a comment |
I found solution:
- Use android.support.v7.widget.GridLayout
- Here programatically set margin and full size horizontally
O activity:
View profileCategoryActive = inflater.inflate(R.layout.profile_category_active, null, false);
categoriesGridContainer.addView(profileCategoryActive);
// set ndroid:layout_columnWeight="1" programatically
GridLayout.LayoutParams params = new GridLayout.LayoutParams(GridLayout.spec(
GridLayout.UNDEFINED, GridLayout.FILL, 1f),
GridLayout.spec(GridLayout.UNDEFINED, GridLayout.FILL, 1f));
params.width = (int) AndroidUtil.dpToPx(this, categoryItemWidth);
params.bottomMargin = (int) tilePreviewLeftRightMarginDp;
params.topMargin = (int) tilePreviewLeftRightMarginDp;
params.rightMargin = (int) tilePreviewLeftRightMarginDp;
params.leftMargin = (int) tilePreviewLeftRightMarginDp;
ConstraintLayout profileCategoryContainer = profileCategoryActive.findViewById(R.id.profileCategoryContainer);
profileCategoryContainer.setLayoutParams(params);
TextView categoryNameTextView = profileCategoryActive.findViewById(R.id.categoryNameTextView);
categoryNameTextView.setText("Ind " + params.width);
add a comment |
I found solution:
- Use android.support.v7.widget.GridLayout
- Here programatically set margin and full size horizontally
O activity:
View profileCategoryActive = inflater.inflate(R.layout.profile_category_active, null, false);
categoriesGridContainer.addView(profileCategoryActive);
// set ndroid:layout_columnWeight="1" programatically
GridLayout.LayoutParams params = new GridLayout.LayoutParams(GridLayout.spec(
GridLayout.UNDEFINED, GridLayout.FILL, 1f),
GridLayout.spec(GridLayout.UNDEFINED, GridLayout.FILL, 1f));
params.width = (int) AndroidUtil.dpToPx(this, categoryItemWidth);
params.bottomMargin = (int) tilePreviewLeftRightMarginDp;
params.topMargin = (int) tilePreviewLeftRightMarginDp;
params.rightMargin = (int) tilePreviewLeftRightMarginDp;
params.leftMargin = (int) tilePreviewLeftRightMarginDp;
ConstraintLayout profileCategoryContainer = profileCategoryActive.findViewById(R.id.profileCategoryContainer);
profileCategoryContainer.setLayoutParams(params);
TextView categoryNameTextView = profileCategoryActive.findViewById(R.id.categoryNameTextView);
categoryNameTextView.setText("Ind " + params.width);
I found solution:
- Use android.support.v7.widget.GridLayout
- Here programatically set margin and full size horizontally
O activity:
View profileCategoryActive = inflater.inflate(R.layout.profile_category_active, null, false);
categoriesGridContainer.addView(profileCategoryActive);
// set ndroid:layout_columnWeight="1" programatically
GridLayout.LayoutParams params = new GridLayout.LayoutParams(GridLayout.spec(
GridLayout.UNDEFINED, GridLayout.FILL, 1f),
GridLayout.spec(GridLayout.UNDEFINED, GridLayout.FILL, 1f));
params.width = (int) AndroidUtil.dpToPx(this, categoryItemWidth);
params.bottomMargin = (int) tilePreviewLeftRightMarginDp;
params.topMargin = (int) tilePreviewLeftRightMarginDp;
params.rightMargin = (int) tilePreviewLeftRightMarginDp;
params.leftMargin = (int) tilePreviewLeftRightMarginDp;
ConstraintLayout profileCategoryContainer = profileCategoryActive.findViewById(R.id.profileCategoryContainer);
profileCategoryContainer.setLayoutParams(params);
TextView categoryNameTextView = profileCategoryActive.findViewById(R.id.categoryNameTextView);
categoryNameTextView.setText("Ind " + params.width);
answered Dec 21 '17 at 15:35
AlexAlex
172212
172212
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f47920094%2fgridlayout-how-set-space-between-columns%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Possible duplicate stackoverflow.com/questions/21455495/…
– Tenten Ponce
Dec 21 '17 at 7:40
And also here stackoverflow.com/questions/35270404/…
– Tenten Ponce
Dec 21 '17 at 7:40
what is the parent layout of your
main.xml
?– Shambhu
Dec 21 '17 at 8:55
Parent is ConstraintLayout
– Alex
Dec 21 '17 at 8:59