measured layout size is zero when using ConstraintSet









up vote
1
down vote

favorite












This is driving me crazy! measured layout is always 0 when i try to build layout programmatically using constraint layout and constraint set.



I tried requestLayout, forceLayout, invalidate on all child and parents. but width and height is 0 rendering whole view invisible.



here is my layout builder. my problem is that views are rendering invisible when i apply constraints.



public final class FormBuilder 

private Context context;
private ArrayList<ArrayList<TextInputLayout>> fields;

private FormBuilder(Context context)
this.context = context;
fields = new ArrayList<>();
fields.add(new ArrayList<TextInputLayout>());


private ArrayList<TextInputLayout> getLastRow()
return fields.get(fields.size() - 1);


public static FormBuilder newForm(Context context)
return new FormBuilder(context);


public FormBuilder addField(@NonNull String hint)
TextInputLayout field = newTextField(context, hint);
getLastRow().add(field);
return this;


public FormBuilder nextRow()
if (getLastRow().size() > 0) fields.add(new ArrayList<TextInputLayout>());
return this;


public FormView build()
FormView formView = new FormView(context);
ConstraintSet constraints = new ConstraintSet();

int topId = ConstraintSet.PARENT_ID;
for (ArrayList<TextInputLayout> row : fields)
if (row.size() == 0) continue;

int rowIds = new int[row.size()];
for (int i = 0; i < row.size(); i++) // constraint top
TextInputLayout field = row.get(i);
rowIds[i] = field.getId();
ConstraintLayout.LayoutParams params = new ConstraintLayout.LayoutParams(
ConstraintLayout.LayoutParams.WRAP_CONTENT,
ConstraintLayout.LayoutParams.WRAP_CONTENT
);
formView.addView(field, params);

if (topId == ConstraintSet.PARENT_ID)
constraints.connect(rowIds[i], ConstraintSet.TOP, ConstraintSet.PARENT_ID, ConstraintSet.TOP);
else
constraints.connect(rowIds[i], ConstraintSet.TOP, topId, ConstraintSet.BOTTOM);


if (row.size() >= 2) // constraint start and end
constraints.createHorizontalChainRtl(
ConstraintSet.PARENT_ID, ConstraintSet.START,
ConstraintSet.PARENT_ID, ConstraintSet.END,
rowIds, null, ConstraintSet.CHAIN_SPREAD);
else // row.size = 1
constraints.connect(rowIds[0], ConstraintSet.START, ConstraintSet.PARENT_ID, ConstraintSet.START);
constraints.connect(rowIds[0], ConstraintSet.END, ConstraintSet.PARENT_ID, ConstraintSet.END);


topId = rowIds[0];

constraints.applyTo(formView); // this turns layout size to zero
return formView;


private static TextInputLayout newTextField(Context context, String hint)
TextInputLayout.LayoutParams layoutParams = new TextInputLayout.LayoutParams(
TextInputLayout.LayoutParams.MATCH_PARENT,
TextInputLayout.LayoutParams.WRAP_CONTENT
);
TextInputLayout inputLayout = new TextInputLayout(context);
TextInputEditText editText = new TextInputEditText(context);
inputLayout.addView(editText, layoutParams);
inputLayout.setHint(hint);
inputLayout.setId(ViewCompat.generateViewId());
return inputLayout;





MainActivity.java



public class MainActivity extends AppCompatActivity 

@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

FormView form = FormBuilder.newForm(this)
.addField("First name").addField("Last name")
.nextRow()
.addField("Phone numnber")
.build();

FrameLayout layout = findViewById(R.id.main_content);
FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(
FrameLayout.LayoutParams.MATCH_PARENT,
FrameLayout.LayoutParams.WRAP_CONTENT
);
layout.addView(form, params);





FormView.java



public class FormView extends ConstraintLayout 

public FormView(Context context)
super(context);





main_activity.xml



<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent" />









share|improve this question



























    up vote
    1
    down vote

    favorite












    This is driving me crazy! measured layout is always 0 when i try to build layout programmatically using constraint layout and constraint set.



    I tried requestLayout, forceLayout, invalidate on all child and parents. but width and height is 0 rendering whole view invisible.



    here is my layout builder. my problem is that views are rendering invisible when i apply constraints.



    public final class FormBuilder 

    private Context context;
    private ArrayList<ArrayList<TextInputLayout>> fields;

    private FormBuilder(Context context)
    this.context = context;
    fields = new ArrayList<>();
    fields.add(new ArrayList<TextInputLayout>());


    private ArrayList<TextInputLayout> getLastRow()
    return fields.get(fields.size() - 1);


    public static FormBuilder newForm(Context context)
    return new FormBuilder(context);


    public FormBuilder addField(@NonNull String hint)
    TextInputLayout field = newTextField(context, hint);
    getLastRow().add(field);
    return this;


    public FormBuilder nextRow()
    if (getLastRow().size() > 0) fields.add(new ArrayList<TextInputLayout>());
    return this;


    public FormView build()
    FormView formView = new FormView(context);
    ConstraintSet constraints = new ConstraintSet();

    int topId = ConstraintSet.PARENT_ID;
    for (ArrayList<TextInputLayout> row : fields)
    if (row.size() == 0) continue;

    int rowIds = new int[row.size()];
    for (int i = 0; i < row.size(); i++) // constraint top
    TextInputLayout field = row.get(i);
    rowIds[i] = field.getId();
    ConstraintLayout.LayoutParams params = new ConstraintLayout.LayoutParams(
    ConstraintLayout.LayoutParams.WRAP_CONTENT,
    ConstraintLayout.LayoutParams.WRAP_CONTENT
    );
    formView.addView(field, params);

    if (topId == ConstraintSet.PARENT_ID)
    constraints.connect(rowIds[i], ConstraintSet.TOP, ConstraintSet.PARENT_ID, ConstraintSet.TOP);
    else
    constraints.connect(rowIds[i], ConstraintSet.TOP, topId, ConstraintSet.BOTTOM);


    if (row.size() >= 2) // constraint start and end
    constraints.createHorizontalChainRtl(
    ConstraintSet.PARENT_ID, ConstraintSet.START,
    ConstraintSet.PARENT_ID, ConstraintSet.END,
    rowIds, null, ConstraintSet.CHAIN_SPREAD);
    else // row.size = 1
    constraints.connect(rowIds[0], ConstraintSet.START, ConstraintSet.PARENT_ID, ConstraintSet.START);
    constraints.connect(rowIds[0], ConstraintSet.END, ConstraintSet.PARENT_ID, ConstraintSet.END);


    topId = rowIds[0];

    constraints.applyTo(formView); // this turns layout size to zero
    return formView;


    private static TextInputLayout newTextField(Context context, String hint)
    TextInputLayout.LayoutParams layoutParams = new TextInputLayout.LayoutParams(
    TextInputLayout.LayoutParams.MATCH_PARENT,
    TextInputLayout.LayoutParams.WRAP_CONTENT
    );
    TextInputLayout inputLayout = new TextInputLayout(context);
    TextInputEditText editText = new TextInputEditText(context);
    inputLayout.addView(editText, layoutParams);
    inputLayout.setHint(hint);
    inputLayout.setId(ViewCompat.generateViewId());
    return inputLayout;





    MainActivity.java



    public class MainActivity extends AppCompatActivity 

    @Override
    protected void onCreate(Bundle savedInstanceState)
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    FormView form = FormBuilder.newForm(this)
    .addField("First name").addField("Last name")
    .nextRow()
    .addField("Phone numnber")
    .build();

    FrameLayout layout = findViewById(R.id.main_content);
    FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(
    FrameLayout.LayoutParams.MATCH_PARENT,
    FrameLayout.LayoutParams.WRAP_CONTENT
    );
    layout.addView(form, params);





    FormView.java



    public class FormView extends ConstraintLayout 

    public FormView(Context context)
    super(context);





    main_activity.xml



    <?xml version="1.0" encoding="utf-8"?>
    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />









    share|improve this question

























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      This is driving me crazy! measured layout is always 0 when i try to build layout programmatically using constraint layout and constraint set.



      I tried requestLayout, forceLayout, invalidate on all child and parents. but width and height is 0 rendering whole view invisible.



      here is my layout builder. my problem is that views are rendering invisible when i apply constraints.



      public final class FormBuilder 

      private Context context;
      private ArrayList<ArrayList<TextInputLayout>> fields;

      private FormBuilder(Context context)
      this.context = context;
      fields = new ArrayList<>();
      fields.add(new ArrayList<TextInputLayout>());


      private ArrayList<TextInputLayout> getLastRow()
      return fields.get(fields.size() - 1);


      public static FormBuilder newForm(Context context)
      return new FormBuilder(context);


      public FormBuilder addField(@NonNull String hint)
      TextInputLayout field = newTextField(context, hint);
      getLastRow().add(field);
      return this;


      public FormBuilder nextRow()
      if (getLastRow().size() > 0) fields.add(new ArrayList<TextInputLayout>());
      return this;


      public FormView build()
      FormView formView = new FormView(context);
      ConstraintSet constraints = new ConstraintSet();

      int topId = ConstraintSet.PARENT_ID;
      for (ArrayList<TextInputLayout> row : fields)
      if (row.size() == 0) continue;

      int rowIds = new int[row.size()];
      for (int i = 0; i < row.size(); i++) // constraint top
      TextInputLayout field = row.get(i);
      rowIds[i] = field.getId();
      ConstraintLayout.LayoutParams params = new ConstraintLayout.LayoutParams(
      ConstraintLayout.LayoutParams.WRAP_CONTENT,
      ConstraintLayout.LayoutParams.WRAP_CONTENT
      );
      formView.addView(field, params);

      if (topId == ConstraintSet.PARENT_ID)
      constraints.connect(rowIds[i], ConstraintSet.TOP, ConstraintSet.PARENT_ID, ConstraintSet.TOP);
      else
      constraints.connect(rowIds[i], ConstraintSet.TOP, topId, ConstraintSet.BOTTOM);


      if (row.size() >= 2) // constraint start and end
      constraints.createHorizontalChainRtl(
      ConstraintSet.PARENT_ID, ConstraintSet.START,
      ConstraintSet.PARENT_ID, ConstraintSet.END,
      rowIds, null, ConstraintSet.CHAIN_SPREAD);
      else // row.size = 1
      constraints.connect(rowIds[0], ConstraintSet.START, ConstraintSet.PARENT_ID, ConstraintSet.START);
      constraints.connect(rowIds[0], ConstraintSet.END, ConstraintSet.PARENT_ID, ConstraintSet.END);


      topId = rowIds[0];

      constraints.applyTo(formView); // this turns layout size to zero
      return formView;


      private static TextInputLayout newTextField(Context context, String hint)
      TextInputLayout.LayoutParams layoutParams = new TextInputLayout.LayoutParams(
      TextInputLayout.LayoutParams.MATCH_PARENT,
      TextInputLayout.LayoutParams.WRAP_CONTENT
      );
      TextInputLayout inputLayout = new TextInputLayout(context);
      TextInputEditText editText = new TextInputEditText(context);
      inputLayout.addView(editText, layoutParams);
      inputLayout.setHint(hint);
      inputLayout.setId(ViewCompat.generateViewId());
      return inputLayout;





      MainActivity.java



      public class MainActivity extends AppCompatActivity 

      @Override
      protected void onCreate(Bundle savedInstanceState)
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);

      FormView form = FormBuilder.newForm(this)
      .addField("First name").addField("Last name")
      .nextRow()
      .addField("Phone numnber")
      .build();

      FrameLayout layout = findViewById(R.id.main_content);
      FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(
      FrameLayout.LayoutParams.MATCH_PARENT,
      FrameLayout.LayoutParams.WRAP_CONTENT
      );
      layout.addView(form, params);





      FormView.java



      public class FormView extends ConstraintLayout 

      public FormView(Context context)
      super(context);





      main_activity.xml



      <?xml version="1.0" encoding="utf-8"?>
      <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:id="@+id/main_content"
      android:layout_width="match_parent"
      android:layout_height="match_parent" />









      share|improve this question















      This is driving me crazy! measured layout is always 0 when i try to build layout programmatically using constraint layout and constraint set.



      I tried requestLayout, forceLayout, invalidate on all child and parents. but width and height is 0 rendering whole view invisible.



      here is my layout builder. my problem is that views are rendering invisible when i apply constraints.



      public final class FormBuilder 

      private Context context;
      private ArrayList<ArrayList<TextInputLayout>> fields;

      private FormBuilder(Context context)
      this.context = context;
      fields = new ArrayList<>();
      fields.add(new ArrayList<TextInputLayout>());


      private ArrayList<TextInputLayout> getLastRow()
      return fields.get(fields.size() - 1);


      public static FormBuilder newForm(Context context)
      return new FormBuilder(context);


      public FormBuilder addField(@NonNull String hint)
      TextInputLayout field = newTextField(context, hint);
      getLastRow().add(field);
      return this;


      public FormBuilder nextRow()
      if (getLastRow().size() > 0) fields.add(new ArrayList<TextInputLayout>());
      return this;


      public FormView build()
      FormView formView = new FormView(context);
      ConstraintSet constraints = new ConstraintSet();

      int topId = ConstraintSet.PARENT_ID;
      for (ArrayList<TextInputLayout> row : fields)
      if (row.size() == 0) continue;

      int rowIds = new int[row.size()];
      for (int i = 0; i < row.size(); i++) // constraint top
      TextInputLayout field = row.get(i);
      rowIds[i] = field.getId();
      ConstraintLayout.LayoutParams params = new ConstraintLayout.LayoutParams(
      ConstraintLayout.LayoutParams.WRAP_CONTENT,
      ConstraintLayout.LayoutParams.WRAP_CONTENT
      );
      formView.addView(field, params);

      if (topId == ConstraintSet.PARENT_ID)
      constraints.connect(rowIds[i], ConstraintSet.TOP, ConstraintSet.PARENT_ID, ConstraintSet.TOP);
      else
      constraints.connect(rowIds[i], ConstraintSet.TOP, topId, ConstraintSet.BOTTOM);


      if (row.size() >= 2) // constraint start and end
      constraints.createHorizontalChainRtl(
      ConstraintSet.PARENT_ID, ConstraintSet.START,
      ConstraintSet.PARENT_ID, ConstraintSet.END,
      rowIds, null, ConstraintSet.CHAIN_SPREAD);
      else // row.size = 1
      constraints.connect(rowIds[0], ConstraintSet.START, ConstraintSet.PARENT_ID, ConstraintSet.START);
      constraints.connect(rowIds[0], ConstraintSet.END, ConstraintSet.PARENT_ID, ConstraintSet.END);


      topId = rowIds[0];

      constraints.applyTo(formView); // this turns layout size to zero
      return formView;


      private static TextInputLayout newTextField(Context context, String hint)
      TextInputLayout.LayoutParams layoutParams = new TextInputLayout.LayoutParams(
      TextInputLayout.LayoutParams.MATCH_PARENT,
      TextInputLayout.LayoutParams.WRAP_CONTENT
      );
      TextInputLayout inputLayout = new TextInputLayout(context);
      TextInputEditText editText = new TextInputEditText(context);
      inputLayout.addView(editText, layoutParams);
      inputLayout.setHint(hint);
      inputLayout.setId(ViewCompat.generateViewId());
      return inputLayout;





      MainActivity.java



      public class MainActivity extends AppCompatActivity 

      @Override
      protected void onCreate(Bundle savedInstanceState)
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);

      FormView form = FormBuilder.newForm(this)
      .addField("First name").addField("Last name")
      .nextRow()
      .addField("Phone numnber")
      .build();

      FrameLayout layout = findViewById(R.id.main_content);
      FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(
      FrameLayout.LayoutParams.MATCH_PARENT,
      FrameLayout.LayoutParams.WRAP_CONTENT
      );
      layout.addView(form, params);





      FormView.java



      public class FormView extends ConstraintLayout 

      public FormView(Context context)
      super(context);





      main_activity.xml



      <?xml version="1.0" encoding="utf-8"?>
      <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:id="@+id/main_content"
      android:layout_width="match_parent"
      android:layout_height="match_parent" />






      java android android-layout android-constraintlayout constraintset






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 10 at 6:40

























      asked Nov 10 at 4:38









      M.kazem Akhgary

      11.8k53071




      11.8k53071






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          I had to clone ConstraintSet. not only that, cloning must be done after views are added. after adding views and cloning ConstraintSet, it knows size of the views and can set constraints accordingly.



          private FormViewBuilder(Context context) 
          this.context = context;
          formView = new FormView(context); // initialize
          // ...


          // ...

          public FormViewBuilder addField(int id, @NonNull String key, @NonNull String hint, String requiredMessage)
          TextInputLayout field = newTextField(context, id, key, hint, requiredMessage);
          getLastRow().add(field);

          // add views before build <<================ important
          ConstraintLayout.LayoutParams params = new ConstraintLayout.LayoutParams(
          ConstraintLayout.LayoutParams.CHAIN_SPREAD,
          ConstraintLayout.LayoutParams.WRAP_CONTENT
          );
          formView.addView(field, params);

          return this;



          public FormView build()
          ConstraintSet constraints = new ConstraintSet();
          constraints.clone(formView); // clone after views are added <<================ important

          // only set constraints. do not add or remove views

          constraints.applyTo(formView);
          return formView;






          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',
            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%2f53236035%2fmeasured-layout-size-is-zero-when-using-constraintset%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            1
            down vote



            accepted










            I had to clone ConstraintSet. not only that, cloning must be done after views are added. after adding views and cloning ConstraintSet, it knows size of the views and can set constraints accordingly.



            private FormViewBuilder(Context context) 
            this.context = context;
            formView = new FormView(context); // initialize
            // ...


            // ...

            public FormViewBuilder addField(int id, @NonNull String key, @NonNull String hint, String requiredMessage)
            TextInputLayout field = newTextField(context, id, key, hint, requiredMessage);
            getLastRow().add(field);

            // add views before build <<================ important
            ConstraintLayout.LayoutParams params = new ConstraintLayout.LayoutParams(
            ConstraintLayout.LayoutParams.CHAIN_SPREAD,
            ConstraintLayout.LayoutParams.WRAP_CONTENT
            );
            formView.addView(field, params);

            return this;



            public FormView build()
            ConstraintSet constraints = new ConstraintSet();
            constraints.clone(formView); // clone after views are added <<================ important

            // only set constraints. do not add or remove views

            constraints.applyTo(formView);
            return formView;






            share|improve this answer
























              up vote
              1
              down vote



              accepted










              I had to clone ConstraintSet. not only that, cloning must be done after views are added. after adding views and cloning ConstraintSet, it knows size of the views and can set constraints accordingly.



              private FormViewBuilder(Context context) 
              this.context = context;
              formView = new FormView(context); // initialize
              // ...


              // ...

              public FormViewBuilder addField(int id, @NonNull String key, @NonNull String hint, String requiredMessage)
              TextInputLayout field = newTextField(context, id, key, hint, requiredMessage);
              getLastRow().add(field);

              // add views before build <<================ important
              ConstraintLayout.LayoutParams params = new ConstraintLayout.LayoutParams(
              ConstraintLayout.LayoutParams.CHAIN_SPREAD,
              ConstraintLayout.LayoutParams.WRAP_CONTENT
              );
              formView.addView(field, params);

              return this;



              public FormView build()
              ConstraintSet constraints = new ConstraintSet();
              constraints.clone(formView); // clone after views are added <<================ important

              // only set constraints. do not add or remove views

              constraints.applyTo(formView);
              return formView;






              share|improve this answer






















                up vote
                1
                down vote



                accepted







                up vote
                1
                down vote



                accepted






                I had to clone ConstraintSet. not only that, cloning must be done after views are added. after adding views and cloning ConstraintSet, it knows size of the views and can set constraints accordingly.



                private FormViewBuilder(Context context) 
                this.context = context;
                formView = new FormView(context); // initialize
                // ...


                // ...

                public FormViewBuilder addField(int id, @NonNull String key, @NonNull String hint, String requiredMessage)
                TextInputLayout field = newTextField(context, id, key, hint, requiredMessage);
                getLastRow().add(field);

                // add views before build <<================ important
                ConstraintLayout.LayoutParams params = new ConstraintLayout.LayoutParams(
                ConstraintLayout.LayoutParams.CHAIN_SPREAD,
                ConstraintLayout.LayoutParams.WRAP_CONTENT
                );
                formView.addView(field, params);

                return this;



                public FormView build()
                ConstraintSet constraints = new ConstraintSet();
                constraints.clone(formView); // clone after views are added <<================ important

                // only set constraints. do not add or remove views

                constraints.applyTo(formView);
                return formView;






                share|improve this answer












                I had to clone ConstraintSet. not only that, cloning must be done after views are added. after adding views and cloning ConstraintSet, it knows size of the views and can set constraints accordingly.



                private FormViewBuilder(Context context) 
                this.context = context;
                formView = new FormView(context); // initialize
                // ...


                // ...

                public FormViewBuilder addField(int id, @NonNull String key, @NonNull String hint, String requiredMessage)
                TextInputLayout field = newTextField(context, id, key, hint, requiredMessage);
                getLastRow().add(field);

                // add views before build <<================ important
                ConstraintLayout.LayoutParams params = new ConstraintLayout.LayoutParams(
                ConstraintLayout.LayoutParams.CHAIN_SPREAD,
                ConstraintLayout.LayoutParams.WRAP_CONTENT
                );
                formView.addView(field, params);

                return this;



                public FormView build()
                ConstraintSet constraints = new ConstraintSet();
                constraints.clone(formView); // clone after views are added <<================ important

                // only set constraints. do not add or remove views

                constraints.applyTo(formView);
                return formView;







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 10 at 7:53









                M.kazem Akhgary

                11.8k53071




                11.8k53071



























                    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.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • 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%2f53236035%2fmeasured-layout-size-is-zero-when-using-constraintset%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

                    How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

                    Syphilis

                    Darth Vader #20