芯片组保证金和多线

时间:2020-03-09 10:41:10

标签: android android-layout android-chips

我正在开发带有芯片的应用程序。

我有一个带有TextView和ChipGroup的约束布局。芯片以编程方式添加。

这是布局

...
<com.google.android.material.chip.ChipGroup
    android:id="@+id/chipGroup"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="16dp"
    android:layout_marginEnd="16dp"
    android:background="@android:color/holo_red_dark"
    android:gravity="end"
    app:layout_constraintBottom_toTopOf="@+id/chartView"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toEndOf="@+id/textView"
    app:layout_constraintTop_toBottomOf="@+id/project3">

</com.google.android.material.chip.ChipGroup>

<TextView
    android:id="@+id/textView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="24dp"
    android:text="Pippo"
    android:textColor="@color/greenPositive"
    app:layout_constraintBottom_toTopOf="@+id/chartView"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/project3" />
...

活动显示为屏幕截图(我在芯片组中放置了红色背景以显示该区域)

enter image description here

  • ChipGroup被约束到文本视图的末尾,但忽略此约束和边距。
  • 最后,Chip被截断,但是ChipGroup最后有16dp的保证金。
  • 第一行和第二行与第一行不对齐
  • 我在芯片组中放置了重力,但是将芯片对齐以开始。

如何解决所有这些问题?

1 个答案:

答案 0 :(得分:1)

在ChipGroup View中添加app:chipSpacingVertical属性将解决此问题。

 <com.google.android.material.chip.ChipGroup
        android:id="@+id/chipGroup"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:chipSpacingVertical="4dp"/>