GridLayout. How set space between columns?












0















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);
}









share|improve this question

























  • 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
















0















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);
}









share|improve this question

























  • 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














0












0








0








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);
}









share|improve this question
















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 android-gridlayout






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 your main.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











  • 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

















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












2 Answers
2






active

oldest

votes


















1














In xml GridLayout, add:



app:useDefaultMargins="true"


and you get a distance between columns and rows.






share|improve this answer
























  • Getting on android:useDefaultMargins="true"

    – Jarin Rocks
    Feb 13 at 5:43



















0














I found solution:




  1. Use android.support.v7.widget.GridLayout

  2. 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);





share|improve this answer























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    1














    In xml GridLayout, add:



    app:useDefaultMargins="true"


    and you get a distance between columns and rows.






    share|improve this answer
























    • Getting on android:useDefaultMargins="true"

      – Jarin Rocks
      Feb 13 at 5:43
















    1














    In xml GridLayout, add:



    app:useDefaultMargins="true"


    and you get a distance between columns and rows.






    share|improve this answer
























    • Getting on android:useDefaultMargins="true"

      – Jarin Rocks
      Feb 13 at 5:43














    1












    1








    1







    In xml GridLayout, add:



    app:useDefaultMargins="true"


    and you get a distance between columns and rows.






    share|improve this answer













    In xml GridLayout, add:



    app:useDefaultMargins="true"


    and you get a distance between columns and rows.







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Nov 21 '18 at 22:48









    Boris KarloffBoris Karloff

    755718




    755718













    • 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





    Getting on android:useDefaultMargins="true"

    – Jarin Rocks
    Feb 13 at 5:43













    0














    I found solution:




    1. Use android.support.v7.widget.GridLayout

    2. 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);





    share|improve this answer




























      0














      I found solution:




      1. Use android.support.v7.widget.GridLayout

      2. 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);





      share|improve this answer


























        0












        0








        0







        I found solution:




        1. Use android.support.v7.widget.GridLayout

        2. 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);





        share|improve this answer













        I found solution:




        1. Use android.support.v7.widget.GridLayout

        2. 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);






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Dec 21 '17 at 15:35









        AlexAlex

        172212




        172212






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

            How to fix TextFormField cause rebuild widget in Flutter