1

Android Material Design Chip 中似乎存在一个错误:当添加到不在视口的 RecyclerView 项目中时,芯片文本不显示。当 RecyclerView 滚动显示项目时,项目的芯片文本不可见,尽管芯片的颜色是正确的。如果项目被添加到视口内的 RecyclerView 中,芯片文本是可见的,正如预期的那样。

<com.google.android.material.chip.Chip
                  android:id="@+id/chip"
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  app:layout_constraintTop_toTopOf="parent"
                  app:layout_constraintStart_toStartOf="parent"
                  android:text="@{ obj.orderString() }"
                  android:textAppearance="?android:textAppearanceLarge"
                  style="@style/Widget.MaterialComponents.Chip.Choice"
                  app:status="@{ obj }"
                  android:textColor="@color/colorNeutral"
                  android:textAlignment="center"
                  app:chipStartPadding="@dimen/default_padding"
                  app:chipEndPadding="@dimen/default_padding"
                  android:gravity="center_vertical|start"
                  android:enabled="false"
                  tools:text="1"
                  tools:checked="true"/>

有没有人遇到过这样的事情?

芯片文字不可见

4

2 回答 2

0

您正在为您的芯片使用相同的 id。删除 id 并享受 :)

于 2019-08-30T13:56:31.457 回答
0

设置TextView的宽高

<androidx.constraintlayout.widget.ConstraintLayout 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="5dp"
    android:background="@drawable/background_white"
    android:backgroundTint="#C72E00"
    android:clickable="true"
    android:focusable="true">


    <TextView
        android:id="@+id/name"
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:layout_marginLeft="1dp"
        android:layout_marginRight="1dp"
        android:gravity="center"
        android:padding="7dp"
        android:text="text"
        android:textColor="@color/white"
        android:textSize="11dp"
        app:layout_constraintTop_toTopOf="parent" />


</androidx.constraintlayout.widget.ConstraintLayout>

background_white.xml

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <corners android:radius="20dp"/>
    <solid android:color="#f7f7f7" />
    <padding android:left="8dp" android:right="8dp" />
</shape>
于 2019-07-03T04:51:25.673 回答