Android Studio Layout Editor ConstraintLayout: pack vs chain

前端 未结 1 1862
南方客
南方客 2021-01-05 02:23

In the Android Studio Layout Editor I see the words \"pack\" and \"chain\" with respect to a ConstraintLayout. I know they both have something to do with multip

相关标签:
1条回答
  • 2021-01-05 02:39

    Short answer

    A Chain is a group of views that are bound together in a vertical or horizontal line. Pack means that the views should be kept very closely together, ie, touch each other (excluding any padding).

    Pack

    Pack means that the views are packed tightly together. Imagine that you are packing your clothes tightly together in a suitcase before going on a trip.

    Points to note:

    • You can pack views horizontally or vertically.
    • Packing doesn't in itself doesn't constrain the views to each other.

      • If they are not already chained, then packing moves their absolute position in the Layout Editor so that they are adjacent to each other.
      • If they are chained, then setting the Chain mode to packed binds them closely together.

        app:layout_constraintHorizontal_chainStyle="packed"
        

    Chain

    A chain occurs when two adjacent views both have constraints to each other. Imagine an iron link chain.

    The documentation shows this well.

    This chain can continue where every link (view) in the chain has a two-way link to its neighbors.

    Chain mode/style

    As I briefly mentioned above, there are different modes or styles for a chain. They are shown below (image from docs).

    1. Spread (default)
    2. Spread inside
    3. Weighted
    4. Packed

    All of these are chained. Only the bottom one is packed.

    0 讨论(0)
提交回复
热议问题