4 questions
0
votes
1
answer
115
views
How can I have a ConstraintLayout Flow widget wrap the "containing" views and the views also take up the remaining space?
I'm trying to use a Flow widget to replace a vertical orientation LinearLayout that I was just using inside of my ConstraintLayout. It needs to satisfy all of the following:
The "containing"...
0
votes
1
answer
1k
views
How to get all children/referenced views inside a ConstraintLayout's Flow helper
I'm trying to adjust something (color, text, visibility or etc) to a group of Buttons inside a ConstraintLayout which are grouped using a Flow helper.
Since Flow or more accurately ConstraintLayout ...
4
votes
4
answers
2k
views
Arranging ConstraintLayout Flow References From Bottom To Top And Right To Left
I need to fill ConstraintLayout Flow view from Bottom To Top And Right To Left. This is my code:
<androidx.constraintlayout.helper.widget.Flow
android:id="@+id/flow"
android:...
6
votes
4
answers
4k
views
android ConstraintLayout Flow : align items from right to left
I'm using android ConstraintLayout Flow , and I have to arrange items from right to left , something like this :
XML code :
<androidx.constraintlayout.helper.widget.Flow
android:id=&...