gpt4 book ai didi

android - ConstraintLayout、最佳实践、带状背景

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

我正在创建一个背景(如图所示),它有 3 种颜色(宽度相同)。

enter image description here

今天我使用以下代码:

  <LinearLayout
android:layout_marginLeft="@dimen/default_margin"
android:layout_marginRight="@dimen/default_margin"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="4dp">

<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorBlack"/>
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorGreen"/>
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorRed"/>
</LinearLayout>

如您所见,我结合使用了 LinearLayout 和三个具有权重的 View 。 自从我开始使用 ConstraintLayout 以来,我一直在尝试减少 XML 的 View 数量,我相信我可以减少这个问题

我试过创建一个 3px x 1px 的图像作为背景,但是当我使用 fitXY 时它变成了渐变。

是否有涉及使用单个 View 来创建此背景(相同宽度和三种不同颜色)的解决方案?

最佳答案

您可以使用guidelineschains,为此,我想使用链:

在下面的示例中,我有 3 个带水平链的按钮 - 它们的宽度都相同,所以现在剩下要做的就是为它们设置背景颜色。

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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">


<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="4dp"
android:text="Button"
android:background="@color/black"
app:layout_constraintBottom_toBottomOf="@+id/button"
app:layout_constraintEnd_toStartOf="@+id/button"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/button" />

<Button
android:id="@+id/button"
android:layout_width="0dp"
android:layout_height="4dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:text="Button"
android:background="@color/some"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/button3"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toEndOf="@+id/button2"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/button3"
android:layout_width="0dp"
android:layout_height="4dp"
android:text="Button"
android:background="@color/colorPrimary"
app:layout_constraintBottom_toBottomOf="@+id/button"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toEndOf="@+id/button"
app:layout_constraintTop_toTopOf="@+id/button" />


</androidx.constraintlayout.widget.ConstraintLayout>

看起来像这样:

enter image description here

更多信息可以查看ConstraintLayoutGuidelines

关于android - ConstraintLayout、最佳实践、带状背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55534725/

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