【发布时间】:2019-06-24 06:33:04
【问题描述】:
我使用材料组件芯片。在芯片中我们可以获得关闭图标点击和整个芯片点击事件。但是找不到芯片图标点击。
<com.google.android.material.chip.Chip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:textColor="@color/chip_text_color"
app:checkedIconEnabled="false"
app:chipBackgroundColor="@color/chip_background"
app:chipIcon="@drawable/ic_pencil_edit_button"
app:chipIconSize="15dp"
app:chipIconTint="@color/chip_text_color"
app:chipStrokeColor="@color/colorPrimary"
app:chipStrokeWidth="1dp"
app:closeIconTint="@color/colorYellow"
app:iconStartPadding="@dimen/spacing_tiny" />
【问题讨论】:
-
chip.setOnCloseIconClickListener { chipGroup.removeView(chip as View) } 是你想要的这个
-
@AravindV 我想点击编辑图标。带有方形红色标记的那个。
-
你试过用 ChipDrawable 和 ImageSpan 吗?
标签: android android-chips material-components-android