gpt4 book ai didi

android - 如何在约束布局中将单个边框放在多个元素周围?

转载 作者:行者123 更新时间:2023-11-29 15:37:04 27 4
gpt4 key购买 nike

使用 Android 的约束布局,如何在多个元素周围放置一个边框?约束布局的主要好处之一是您不必嵌套 View 。这是您要在约束布局中使用另一种布局的场景吗?

最佳答案

如果没有看到您的更多代码,我很难知道您的实际布局是什么样的。但这是一种在不嵌套任何 View 的情况下围绕某些布局绘制边框的方法

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

<View
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/border"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_margin="4dp"
app:layout_constraintBottom_toBottomOf="@id/guideline"/>

<android.support.constraint.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.7"/>

<View
android:id="@+id/v1"
android:layout_width="100dp"
android:layout_height="200dp"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:background="#8FF0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<View
android:id="@+id/v2"
android:layout_width="200dp"
android:layout_height="100dp"
android:layout_marginEnd="16dp"
android:layout_marginTop="16dp"
android:background="#8F0F"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<View
android:id="@+id/v3"
android:layout_width="100dp"
android:layout_height="0dp"
android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="16dp"
android:background="#80FF"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/v1"
app:layout_constraintBottom_toBottomOf="@id/guideline"/>

<View
android:id="@+id/v4"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="16dp"
android:background="#8000"
app:layout_constraintBottom_toTopOf="@+id/v5"
app:layout_constraintEnd_toStartOf="@+id/v2"
app:layout_constraintStart_toEndOf="@+id/v1"
app:layout_constraintTop_toTopOf="parent" />

<View
android:id="@+id/v5"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginEnd="16dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:background="#8000"
app:layout_constraintBottom_toBottomOf="@+id/v3"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/v1"
app:layout_constraintTop_toBottomOf="@+id/v2" />

</android.support.constraint.ConstraintLayout>

输出结果是这样的

enter image description here

那些彩色 View 是一些放置在布局中的小部件。并且在另一个 View 中设置了边框。

关于android - 如何在约束布局中将单个边框放在多个元素周围?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47573886/

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