-
Notifications
You must be signed in to change notification settings - Fork 173
Barrier.java (doc)
public class Barrier extends View
java.lang.Object`
↳ android.view.View`
↳ androidx.constraintlayout.widget.Barrier`
Added in 1.1
A Barrier references multiple widgets as input, and creates a virtual guideline based on the most extreme widget on the specified side. For example, a left barrier will align to the left of all the referenced views.
Example:
Let's have two buttons, @id/button1 and @id/button2. The constraint_referenced_ids field will reference them by simply having them as comma-separated list:
<androidx.constraintlayout.widget.Barrier
android:id="@+id/barrier"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:barrierDirection="start"
app:constraint_referenced_ids="button1,button2" />
With the barrier direction set to start, we will have the following result:
Reversely, with the direction set to end, we will have:
If the widgets dimensions change, the barrier will automatically move according to its direction to get the most extreme widget:
Other widgets can then be constrained to the barrier itself, instead of the individual widget. This allows a layout to automatically adapt on widget dimension changes (e.g. different languages will end up with different length for similar worlds).
If the barrier references GONE widgets, the default behavior is to create a barrier on the resolved position of the GONE widget. If you do not want to have the barrier take GONE widgets into account, you can change this by setting the attribute barrierAllowsGoneWidgets to false (default being true).
Details see Java doc https://developer.android.com/reference/androidx/constraintlayout/widget/Barrier