4

我使用带有动态芯片的芯片组。我希望芯片根据它们的文字被包裹在宽度中。但即使没有填充,它也需要额外的空间。

下面是我的代码:

xml:

<com.google.android.material.chip.ChipGroup
    android:id="@+id/cg"
    android:layout_width="0dp"
    android:layout_weight="75"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dp"
    android:layout_marginBottom="5dp"
    android:textColor="@android:color/black"
    android:textStyle="bold"
    android:textSize="12sp"
    app:singleSelection="false"
    app:chipSpacingVertical="5dp"
    app:chipSpacingHorizontal="5dp"
    app:singleLine="false"
    app:chipSpacing="2dp">

这是动态添加芯片的方法:

for(int i=0;i<cartoonTypes.length;i++){
    chip = new Chip(this);
    chip.setText(cartoonTypes[i].trim());
    chip.setTextColor(Color.WHITE);
    chip.setChipBackgroundColor(getResources().getColorStateList(R.color.colorChip));
    chip.setTextSize(12);
    chip.setGravity(Gravity.CENTER_HORIZONTAL | Gravity.CENTER_VERTICAL);
    chip.setPadding(0,0,0,0);
    cgMovieGenre.addView(chip);
    ChipGroup.LayoutParams layoutParams = (ChipGroup.LayoutParams) chip.getLayoutParams();;
    int dpSize = px2dp(12);;
    layoutParams.height = dpSize;
    layoutParams.width = ChipGroup.LayoutParams.WRAP_CONTENT;
    chip.setLayoutParams(layoutParams);
}

方法 px2dp 这样做:

int px2dp(int px){
    metrics = new DisplayMetrics();
    getWindowManager().getDefaultDisplay().getMetrics(metrics);
    int h = (px * metrics.densityDpi) / DisplayMetrics.DENSITY_DEFAULT;
    return h;
}

build.gradle的有以下依赖项:

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
implementation 'androidx.cardview:cardview:1.0.0-beta01'
implementation 'com.google.android.material:material:1.0.0-beta01'

这就是我所看到的:

截图,芯片组

我希望芯片根据其文本使用尽可能小的宽度。

4

6 回答 6

5

您应该以正确的方式为芯片设置填充,试试这个:

chip.setChipStartPadding(0);
chip.setChipEndPadding(0);
于 2019-05-23T02:05:59.850 回答
3

可能只是删除chip.setTextSize()可能会帮助您摆脱右侧的空间(但是,我仍然想知道如何更改字体大小)。如果没有,这是我在项目中使用的解决方案:

  1. 为您的筹码定义样式:
    <style name="ListChip" parent="Widget.MaterialComponents.Chip.Entry" >
        <style name="ListChip" parent="Widget.MaterialComponents.Chip.Entry" >
        <item name="rippleColor">@null</item>
        <item name="closeIcon">@null</item>
        <item name="chipBackgroundColor">?attr/background_highlight_color</item>
        <item name="android:checkable">false</item>
        <item name="android:textSize">8sp</item> //This has not effect
        <item name="android:textColor">?attr/text_color</item>
    </style>
  1. 使用根元素 com.google.android.material.chip.Chip创建一个布局资源文件并应用新创建的样式:
    <?xml version="1.0" encoding="utf-8"?>
     <com.google.android.material.chip.Chip
        style="@style/ListChip"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:ellipsize="end">
     </com.google.android.material.chip.Chip>
  1. 在代码中,不要使用Chip chip = new Chip(this);创建您的芯片。但是通过夸大新创建的芯片布局:
    Chip chip = (Chip) LayoutInflater.from(chipGroup.getContext()).inflate(R.layout.chip_in_list, chipGroup, false);
  1. 不要在新创建的芯片上调用chip.setTextSize() 。
于 2019-08-07T15:03:24.467 回答
3
于 2019-05-23T02:19:19.020 回答
2

只需在您的代码中删除这一行

//chip.setPadding(0,0,0,0);

有和没有填充的结果:

在此处输入图像描述
在此处输入图像描述

只是为了理解里面的填充Chip

 * <pre>
 *   chipStartPadding     iconEndPadding     closeIconStartPadding         chipEndPadding
 *    +                    +                                    +                      +
 *    |                    |                                    |                      |
 *    |  iconStartPadding  |  textStartPadding   textEndPadding | closeIconEndPadding  |
 *    |   +                |    +                            +  |                  +   |
 *    |   |                |    |                            |  |                  |   |
 *    v   v                v    v                            v  v                  v   v
 * +-----+----+-----------+----+----+---------------------+----+----+----------+----+-----+
 * |     |    |       XX  |    |    |  XX   X  X  X  XXX  |    |    | X      X |    |     |
 * |     |    |      XX   |    |    | X  X  X  X  X  X  X |    |    |  XX  XX  |    |     |
 * |     |    |  XX XX    |    |    | X     XXXX  X  XXX  |    |    |    XX    |    |     |
 * |     |    |   XXX     |    |    | X  X  X  X  X  X    |    |    |  XX  XX  |    |     |
 * |     |    |    X      |    |    |  XX   X  X  X  X    |    |    | X      X |    |     |
 * +-----+----+-----------+----+----+---------------------+----+----+----------+----+-----+
 *                  ^                           ^                         ^
 *                  |                           |                         |
 *                  +                           +                         +
 *             chipIconSize                  *dynamic*              closeIconSize
 * </pre>

还有一些注意事项:

  • chip.setGravity(Gravity.CENTER_HORIZONTAL | Gravity.CENTER_VERTICAL); 不起作用,因为芯片文本必须垂直居中并开始对齐
    芯片采用内置setGravity(Gravity.CENTER_VERTICAL | Gravity.START);

  • 而不是chip.setChipBackgroundColor(getResources().getColorStateList(R.color.colorChip));使用方法chip.setChipBackgroundColorResource(R.color.colorChip)

于 2019-10-05T09:07:00.993 回答
0

我正在以编程方式创建芯片,所以我必须在 kotlin 中执行此操作:

chip.minimumWidth = 0
chip.setEnsureMinTouchTargetSize(false)
于 2021-11-04T13:30:16.377 回答
-1

首先,创建你的 attr (values/attrs.xml):

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="ChipView">
        <attr name="CustomChipStyle" format="reference"/>
    </declare-styleable>
</resources>

之后添加到您的主题将您的 R.attr.CustomChipChoiceStyle 设置为您的主题 (values/styles.xml) 示例:

<style name="APPTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
    <item name="colorPrimary">@color/primaryColor</item>
    <item name="colorPrimaryDark">@color/primaryColor</item>
    <item name="colorAccent">@color/secondaryColor</item>
    <item name="CustomChipChoiceStyle">@style/ChipTextAppearance</item>
</style>

    <style name="ChipTextAppearance" parent="@style/Widget.MaterialComponents.Chip.Choice">
        <item name="android:minWidth">130dp</item>
        <item name="chipMinHeight">50dp</item>
<item name="android:textAlignment">center</item>
    </style>

如果您有这样的芯片组:

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

您可以从代码中添加类似的内容:

val list = listOf("credit", "cash")
list.forEach{
            val chip = Chip(context, null, R.attr.CustomChipStyle).apply {
                text = it
            }
            chipGroup.addView(chip)
        }

就是这样。

在此处输入图像描述

于 2021-01-06T23:43:22.657 回答