作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个带有芯片的应用程序。
我有一个带有 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" />
...
Activity 显示为屏幕截图(我在芯片组中放置了红色背景以显示该区域)
如何解决所有这些问题?
最佳答案
向 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"/>
关于android - 芯片组边距和多线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60598843/
我正在使用 Angular 4 的芯片组和自动完成功能开发 stackoverflow 中的标记系统等功能。这是我写的一段代码。它不起作用
我正在尝试制作一个基于 ChipGroup 和 Chip 的 recyclerview 过滤器 我在我的应用程序上使用 fragment ,因此,包含 RecyclerView 的 fragment
因此,我创建了一个可组合的 Chip 并在 LazyRow 中使用它,如下所示: LazyRow( modifier = modifier, horizontalArr
我使用 Javacv code 在 Andorid 中制作了一个自定义相机.我没有包含所有的 .so 文件,而只包含了我的应用程序似乎需要的文件。如下面的屏幕截图所示: 它适用于 Samsumg Ga
我是一名优秀的程序员,十分优秀!