gpt4 book ai didi

android - 如何使用 ConstraintLayout 在 android studio 中添加垂直分隔线

转载 作者:搜寻专家 更新时间:2023-11-01 09:24:22 25 4
gpt4 key购买 nike

我想使用 ConstraintLayout 添加一个 ViewAnimator。我使用 RelativeLayout 完成了它,但我无法使用 ConstraintLayout 完成同样的操作。实际上没有任何这样的选项,有水平和垂直分隔线。给出的屏幕截图是我想要使用 ConstraintLayout 实现的,我是使用 RelativeLayout 实现的。这是 ViewAnimator

的代码
<ViewAnimator
android:layout_width="1dp"
android:layout_height="match_parent"
android:layout_marginTop="16dp"
android:background="@android:color/darker_gray" />

我只需要垂直线

Just like this screenshot done using RelativeLayout

最佳答案

设置高度0dp然后使用 topof 和 bottomof parent 或任何 View 。

    <ViewAnimator
android:layout_width="1dp"
android:layout_height="0dp"
android:layout_marginTop="16dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:background="@android:color/darker_gray" />

对于垂直 div,您也可以使用 <View />标签。

关于android - 如何使用 ConstraintLayout 在 android studio 中添加垂直分隔线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51905520/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com