使用带有constraintLayout的coordinatorLayout锚点

时间:2017-11-16 15:07:50

标签: android android-layout android-coordinatorlayout android-constraintlayout

我想设计这样的东西:

enter image description here

你可以看到fab位于标题和正文之间。

使用app:anchorapp:anchorGravity属性的 coordinatorLayout 可以很容易地做到这一点

但我想用 constraintLayout 来做。

任何想法?

1 个答案:

答案 0 :(得分:7)

我找到了答案:))

<FAB
   ...
   app:layout_constraintTop_toBottomOf="@+id/header"
   app:layout_constraintBottom_toTopOf="@id/body"/>