Android ViewGroup
has the following methods to add (child) Views:
I know we can easily define horizontal/vertical orientation to LinearLayout in xml/programatically and add child views, eg.
Similarly with RelativeLayout, we can use ViewGroup
's addView
and RelativeLayout.LayoutParams
's method:
I am also aware that we can use LinearLayout
as a child inside ConstraintLayout
and play with it.
Is there any solid and recommended way to add child views to ConstraintLayout dynamically?
UPDATE: Let me give a not-so-simple example which I what I want to achieve.
Suppose you have a View
1, View
2 and View
3. All V1, V2 and V3 are aligned vertically one below another and are complex views consisting of multiple TextView
s and ImageView
s. Based on user action and what server sends information, I need to add multiple V1 and V2 (can be 1 pair of V1-V2 and can be 3 pairs of V1-V2)between original V2 and V3. If I am using ConstraintLayout, would it be best if I add multiple constraints programatically when I can easily use LinearLayout with vertical orientation?
Now, in terms of efficiency, performance and less-and-beautiful-code, is ConstraintLayout best for this requirement as compared to Linear Layout?
Views can be added to
ConstraintLayout
usingaddView()
in the same way as you would withLinearLayout
. The difference is that withConstraintLayout
the added views must be constrained. To constrain a view programmatically, useConstraintSet
.Here is a brief example:
activity_main
Define two
TextViews
. Center them horizontally and positioned at the top.This is what you will see when a new
TextView
("Middle View") is added to this layout without setting constraints. Notice that the new view defaults to position (0,0).Let's say that we want the generated middle view to be placed between the top view and the bottom view centered horizontally in the window like this:
Here is the code that will produce this result:
MainActivity.java