约束内部视图的一半和外部视图

时间:2018-04-11 13:52:35

标签: android android-constraintlayout

我希望我的textview位于另一个视图的底部,但是一半在内部,一半在约束布局之外。

图像:

enter image description here

试过基线,但只在中间对齐

1 个答案:

答案 0 :(得分:2)

app:layout_constraintBottom_toBottomOf="@+id/another_view"
app:layout_constraintTop_toBottomOf="@+id/another_view"

为textview设置这些属性。这里another_view是要放置textview的视图的id。 它的作用是将textview的顶部和textview的底部对齐到视图的底部。