Android:Chip舷手、ChipGroups、ChipDrawable

190319 更新 : 實(shí)現(xiàn) ChipGroup 中永遠(yuǎn)有一個(gè)選中的效果

文中完整代碼下載地址:https://github.com/CnPeng/CnPengAndroid2.git
文中內(nèi)容對(duì)應(yīng)上述地址中的 a01_chips 目錄

此外劲绪,文中DEMO是基于 AndroidStudio 3.2 Beta 5 版本構(gòu)建的聚霜。gradle 中 compileSdkVersion 28 , targetSdkVersion 28

一珠叔、Chip相關(guān)組件的作用及如何導(dǎo)包

1蝎宇、Chip相關(guān)組件的作用

如上圖,這種界面我們通常稱之為 流式布局標(biāo)簽祷安。

最早實(shí)現(xiàn)這種界面的時(shí)候姥芥,基本都是自定義一個(gè)繼承自ViewGroup的控件,然后在Java代碼中動(dòng)態(tài)的add 一個(gè)個(gè)的TextView汇鞭;

后來有了 RecyclerView , 我們實(shí)現(xiàn)這種界面就比較方便了凉唐;

現(xiàn)在谷歌為我們提供了 Chip、ChipGroup霍骄、ChipDrawable 台囱,有了這三者, 我們實(shí)現(xiàn)這種界面就更加方便了读整!

2簿训、引入material兼容包

使用Chip時(shí)需要先引入兼容包,可分為兩種情況, 一種是新建項(xiàng)目强品;一種是在現(xiàn)有的項(xiàng)目中引入 Chip.

(1)膘侮、新建的項(xiàng)目

  • 引入兼容包
implementation 'com.google.android.material:material:1.0.0-rc01'
  • 應(yīng)用 MaterialComponents 主題
    為 activity 或者 APP 應(yīng)用 MaterialComponents 主題(也可以是該主題的子主題)。如:
<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
    <item name="chipIconTint">@color/chipIconTint</item>
</style>

(2)的榛、現(xiàn)有的項(xiàng)目

  • 先移除 module 的 build.gradle 中的
    implementation 'com.android.support:xxx' ,
  • 在module 的 build.gradle 中增加 implementation 'com.google.android.material:material:1.0.0-rc01',
  • 修改module的build.gradle中的 compileSdkVersion為 28 琼了, targetSdkVersion為 28
  • AndroidManifest.xml 中修改 application 的 theme 為Theme.MaterialComponents或該 主題的子主題(此處沒想明白,為啥單純?yōu)閏hip所在activity應(yīng)用該主題不行夫晌;新建的項(xiàng)目中雕薪,可以單純的給activity設(shè)置主題)
  • 修改 project 的 build.gralde 中的 gradle版本為不低于3.2.0 的版本 ,如
buildscript {
    ......
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.0-beta05'
        ......
    }
}
  • 然后在 AndroidStuido 菜單欄中依次點(diǎn)擊:Refactor > MigrateToAndroidX(上一步修改gradle版本就是為了這個(gè)轉(zhuǎn)換晓淀,)
  • 最后所袁,手動(dòng)修改 上一步中轉(zhuǎn)換失敗的文件(這個(gè)可能會(huì)比較費(fèi)時(shí)間)

補(bǔ)充

二、Chip的分類及其特性

1要糊、Chip的分類

注意:以下類別中纲熏,特點(diǎn)描述都是基于只設(shè)置 text 和 style 不設(shè)置其他屬性時(shí)總結(jié)的

根據(jù)Chip使用的 style 妆丘,可以將其分為以下四類:

(1)锄俄、Action chip

  • 使用 style="@style/Widget.MaterialComponents.Chip.Action"
  • 不設(shè)置style時(shí),默認(rèn)使用上述style
  • 默認(rèn)前后圖標(biāo)都不展示勺拣,點(diǎn)擊后沒有選中狀態(tài)
    <com.google.android.material.chip.Chip
        style="@style/Widget.MaterialComponents.Chip.Action"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:text="ActionChip" />

    <!--展示效果同上面的一致-->
    <com.google.android.material.chip.Chip
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="這是一個(gè)單一的chip" />

(2)奶赠、Filter Chip

  • 使用 style="@style/Widget.MaterialComponents.Chip.Filter"
  • 初始狀態(tài)下, 不展示前后圖標(biāo)
  • 點(diǎn)擊之后會(huì)展示前面的選中圖標(biāo)药有,并且具有選中狀態(tài)
  • 通常應(yīng)用在 ChipGroup 中
<com.google.android.material.chip.Chip
        style="@style/Widget.MaterialComponents.Chip.Filter"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="FilterChip01" />

(3)毅戈、Entry Chip

  • 使用style="@style/Widget.MaterialComponents.Chip.Entry"
  • 默認(rèn)在末尾展示刪除按鈕;點(diǎn)擊后前面展示選中圖標(biāo)愤惰,有選中狀態(tài)
  • 通澄可以作為 chipDrawable 使用,比如在填選郵件收件人時(shí)可以使用
    <com.google.android.material.chip.Chip
        style="@style/Widget.MaterialComponents.Chip.Entry"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:text="EntryChip " />

(4)宦言、Choice Chip

  • 默認(rèn)不展示前后的圖標(biāo)扇单,但點(diǎn)擊后有選中狀態(tài)
  • 通常用在 ChipGroup 中 , 通過 ChipGroup 的 singleSelection=true/false 屬性可以實(shí)現(xiàn)單選或多選
    <com.google.android.material.chip.Chip
        style="@style/Widget.MaterialComponents.Chip.Choice"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:text="ChoiceChip" />

2、各種Chip的默認(rèn)效果圖

三奠旺、Chip的屬性

1蜘澜、Chip 的屬性

類別 屬性名稱 具體作用
Shape app:chipCornerRadius 圓角半徑
Size app:chipMinHeight 最小高度
Background app:chipBackgroundColor 背景顏色
Border app:chipStrokeColor 邊線顏色
Border app:chipStrokeWidth 邊線寬度
Ripple app:rippleColor 水波紋效果的顏色
Label android:text 文本內(nèi)容
Label android:textColor 修改文本顏色
Label android:textAppearance 字體樣式
Chip Icon app:chipIconVisible 前面的圖標(biāo)是否展示
Chip Icon app:chipIcon chip中文字前面的圖標(biāo)
Chip Icon app:chipIconTint 文字前面的圖標(biāo)著色
Chip Icon app:chipIconSize chip中文字前面的圖標(biāo)
Close Icon app:closeIconVisible chip中文字后面的關(guān)閉按鈕是否可見
Close Icon app:closeIcon chip中文字后面的關(guān)閉圖標(biāo)
Close Icon app:closeIconSize 文字后面的關(guān)閉圖標(biāo)的大小
Close Icon app:closeIconTint 文字后面的著色
Checkable app:checkable 是否可以被選中
Checked Icon app:checkedIconVisible 選中狀態(tài)的圖標(biāo)是否可見
Checked Icon app:checkedIcon 選中狀態(tài)的圖標(biāo)
Motion app:showMotionSpec 動(dòng)效彰导?
Motion app:hideMotionSpec 動(dòng)效芋膘?
Paddings app:chipStartPadding chip左邊距
Paddings app:chipEndPadding chip右邊距
Paddings app:iconStartPadding chipIcon的左邊距
Paddings app:iconEndPadding chipIcon的右邊距
Paddings app:textStartPadding 文本左邊距
Paddings app:textEndPadding 文本右邊距
Paddings app:closeIconStartPadding 關(guān)閉按鈕的做左邊距
Paddings app:closeIconEndPadding 關(guān)閉按鈕的右邊距

2晦毙、Chip 屬性間的關(guān)系圖


上圖來自于:ChipDrawable文檔 https://developer.android.com/reference/com/google/android/material/chip/ChipDrawable?hl=zh-cn

四县貌、Chip的監(jiān)聽

(1)爵政、setOnClickListener

點(diǎn)擊事件的監(jiān)聽绍妨。

  • Kotlin版示例代碼:
//使用了 kotlinx , 所以不需要 fingViewById逻杖。
chip_normal1.setOnClickListener {
      Toast.makeText(mActivity, "Chip被點(diǎn)擊了", Toast.LENGTH_SHORT).show()
}
  • java版代碼
Chip chip_normal=findViewById(R.id.chip_normal1);
chip_normal.setOnClickListener(new OnClickListener(){
      @Override
      public void onClick(View view){
              Toast.makeText(mActivity, "Chip被點(diǎn)擊了", Toast.LENGTH_SHORT).show()
      }
});

(2)圈膏、setOnCheckedChangeListener

選中狀態(tài)的監(jiān)聽。

注意:

  • 只有 checkable 屬性為true 時(shí)該監(jiān)聽才會(huì)生效
  • 未設(shè)置 checkable 屬性時(shí)慎王,如果應(yīng)用了 filter/entry/choice 的style , 該監(jiān)聽可生效蚓土,因?yàn)檫@三種style 中 checkable 的值為true。而 ation 的 style 中 checkable 是默認(rèn)關(guān)閉的
  • Kotlin版代碼
chip_filter.setOnCheckedChangeListener { buttonView, isChecked ->
    var hintStr = ""
    if (isChecked) {
            hintStr = "被選中了"
    } else {
            hintStr = "取消選中了"
    }
    Toast.makeText(mActivity, hintStr, Toast.LENGTH_SHORT).show()
 }
  • java版代碼
Chip chip = (Chip) findViewById(R.id.chip_filter);

chip.setOnCheckedChangeListener(new setOnCheckedChangeListener() {
    @Override
    public void onCheckedChanged(CompoundButton view, boolean isChecked) {
        String hintStr = ""
        if (isChecked) {
                hintStr = "被選中了"
        } else {
                hintStr = "取消選中了"
        }
        Toast.makeText(mActivity, hintStr, Toast.LENGTH_SHORT).show()
    }
});

(3)赖淤、setOnCloseIconClickListener

關(guān)閉按鈕被點(diǎn)擊的監(jiān)聽

1)蜀漆、示例代碼

  • Kotlin版代碼
//關(guān)閉按鈕的點(diǎn)擊監(jiān)聽——closeIcon 沒有id,所以必須需要構(gòu)造匿名監(jiān)聽
chip_entry.setOnCloseIconClickListener {
    Toast.makeText(mActivity, "ClostIcon被點(diǎn)擊了", Toast.LENGTH_SHORT).show()
}
  • java 版代碼
Chip chip = (Chip) findViewById(R.id.chip_entry);

chip.setOnCloseIconClickListener(new OnClickListener() {
    @Override
    public void onClick(View view) {
        Toast.makeText(mActivity, "ClostIcon被點(diǎn)擊了", Toast.LENGTH_SHORT).show()
    }
});

2)咱旱、注意事項(xiàng)

假設(shè)我們讓Chip所在的界面 實(shí)現(xiàn)了 onClickListener 确丢,那么,為chip 設(shè)置點(diǎn)擊監(jiān)聽時(shí)就可以直接調(diào)用 chip.setOnClickListener(this)吐限。但是,如果此時(shí)也需要監(jiān)聽 CloseIcon 的點(diǎn)擊事件诸典,我們必須單獨(dú)為 CloseIcon 構(gòu)造一個(gè)匿名監(jiān)聽——因?yàn)椋?/p>

CloseIcon 是直接通過畫筆畫出來的,沒有id狐粱。在處理點(diǎn)擊事件時(shí),Chip的源碼中實(shí)際是監(jiān)聽了觸摸事件,根據(jù)觸摸的位置判斷 CloseIcon是否被點(diǎn)擊了豆挽。相關(guān)源碼如下:

  • setCloseIcon 的源碼
 public void setCloseIcon(@Nullable Drawable closeIcon) {
        Drawable oldCloseIcon = this.getCloseIcon();
        if (oldCloseIcon != closeIcon) {
            float oldCloseIconWidth = this.calculateCloseIconWidth();
            this.closeIcon = closeIcon != null ? DrawableCompat.wrap(closeIcon).mutate() : null;
            float newCloseIconWidth = this.calculateCloseIconWidth();
            this.unapplyChildDrawable(oldCloseIcon);
            if (this.showsCloseIcon()) {
                this.applyChildDrawable(this.closeIcon);
            }

            this.invalidateSelf();
            if (oldCloseIconWidth != newCloseIconWidth) {
                this.onSizeChange();
            }
        }
    }
  • Chip 中 CloseIcon 點(diǎn)擊事件的源碼
    public boolean onTouchEvent(MotionEvent event) {
        boolean handled = false;
        int action = event.getActionMasked();
        boolean eventInCloseIcon = this.getCloseIconTouchBounds().contains(event.getX(), event.getY());
        switch(action) {
        case 0:
            if (eventInCloseIcon) {
                this.setCloseIconPressed(true);
                handled = true;
            }
            break;
        case 1:
            if (this.closeIconPressed) {
                this.performCloseIconClick();
                handled = true;
            }
        case 3:
            this.setCloseIconPressed(false);
            break;
        case 2:
            if (this.closeIconPressed) {
                if (!eventInCloseIcon) {
                    this.setCloseIconPressed(false);
                }

                handled = true;
            }
        }

        return handled || super.onTouchEvent(event);
    }

五帮哈、ChipGroup

與 RadioGroup 類似膛檀,ChipGroup 是用來管理多個(gè)Chip的 ,可以控制多個(gè) chip 的布局方式以及事件但汞。

1宿刮、ChipGroup的特點(diǎn)

使用 ChipGroup 可以方便的實(shí)現(xiàn) 流式布局效果。其特點(diǎn)如下:

  • 默認(rèn)情況下私蕾, ChipGroup 中的 chip 會(huì)橫向排列僵缺,當(dāng)超過一行時(shí)會(huì)執(zhí)行換行操作。
  • 如果我們不想讓 Chip 換行踩叭,那么為 ChipGroup 設(shè)置 app:singleLine=true磕潮,如果 Chip 會(huì)超過一行翠胰,則在外層包裹 HorizontalScrollView
  • 只有當(dāng)其中包裹的 Chip 是 checkable=true 時(shí),才具有選中效果

2自脯、ChipGroup的屬性

屬性名稱 作用 示例
app:checkedChip 初始選中的chip app:checkedChip="@id/chipInGroup2_1"
app:chipSpacing Chip間的間距 app:chipSpacing="25dp"
app:chipSpacingHorizontal Chip間的水平間距 app:chipSpacingHorizontal="35dp"
app:chipSpacingVertical Chip間的垂直間距 app:chipSpacingVertical="10dp"
app:singleLine 是否開啟單行模式 app:singleLine="true"
app:singleSelection 是否開啟單選模式 app:singleSelection="true"

注意:

  • 如果 singLine=false, app:chipSpacing 會(huì)同時(shí)控制Chips間的水平和垂直的間距
  • 如果 singLine=true, app:chipSpacing 控制的是Chips之間的水平間距
  • 如果設(shè)置了 chipSpacing 之景,也設(shè)置了 chipSpacingHorizontal / chipSpacingVertical 則 chipSpacing 的值會(huì)被覆蓋

3、ChipGroup的基本使用示例

(1)膏潮、效果圖

(2)锻狗、示例代碼

<TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:text="3、ChipGroup的使用——多行焕参,多選" />

    <!--ChipGroup 默認(rèn)狀態(tài)轻纪,會(huì)換行,可多選-->
    <com.google.android.material.chip.ChipGroup
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        app:chipSpacing="25dp"
        app:chipSpacingHorizontal="35dp"
        app:chipSpacingVertical="10dp">

        <com.google.android.material.chip.Chip
            android:id="@+id/chipInGroup1"
            style="@style/Widget.MaterialComponents.Chip.Filter"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="chipInGroup1"
            android:textAppearance="?android:textAppearanceMedium" />

        <com.google.android.material.chip.Chip
            android:id="@+id/chipInGroup2"
            style="@style/Widget.MaterialComponents.Chip.Filter"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="chipInGroup2"
            android:textAppearance="?android:textAppearanceMedium" />

        <com.google.android.material.chip.Chip
            android:id="@+id/chipInGroup3"
            style="@style/Widget.MaterialComponents.Chip.Filter"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="chipInGroup3"
            android:textAppearance="?android:textAppearanceMedium" />

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

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:text="4叠纷、ChipGroup的使用——單行刻帚、單選" />

    <!--ChipGroup 不換行,單選-->
    <HorizontalScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scrollbars="none">

        <com.google.android.material.chip.ChipGroup
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            app:checkedChip="@id/chipInGroup2_1"
            app:chipSpacing="25dp"
            app:singleLine="true"
            app:singleSelection="true">

            <com.google.android.material.chip.Chip
                android:id="@+id/chipInGroup2_1"
                style="@style/Widget.MaterialComponents.Chip.Filter"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="chipInGroup2——1"
                android:textAppearance="?android:textAppearanceMedium" />

            <com.google.android.material.chip.Chip
                android:id="@+id/chipInGroup2_2"
                style="@style/Widget.MaterialComponents.Chip.Filter"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="chipInGroup2——2"
                android:textAppearance="?android:textAppearanceMedium" />

            <com.google.android.material.chip.Chip
                android:id="@+id/chipInGroup2_3"
                style="@style/Widget.MaterialComponents.Chip.Filter"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="chipInGroup2——3"
                android:textAppearance="?android:textAppearanceMedium" />

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

4涩嚣、事件監(jiān)聽

(1)崇众、setOnCheckedChangeListener

選中監(jiān)聽。
注意:只有 singleSelction=true 時(shí)航厚,該監(jiān)聽才有效顷歌。

  • Kotlin版代碼
 //ChipGroup中設(shè)置選中監(jiān)聽-- 只有單選的chipGroup才可以使用
        chipGroup2.setOnCheckedChangeListener { chipGroup, selectedId ->
            var hintStr = ""
            when (selectedId) {
                R.id.chipInGroup2_1 -> hintStr = "被選中的是 chipInGroup2_1 "
                R.id.chipInGroup2_2 -> hintStr = "被選中的是 chipInGroup2_2 "
                R.id.chipInGroup2_3 -> hintStr = "被選中的是 chipInGroup2_3 "
                else -> hintStr = "沒有選中任何chip"
            }
            Toast.makeText(mActivity, hintStr, Toast.LENGTH_SHORT).show()
        }
  • java 版代碼
ChipGroup chipGroup = (ChipGroup) findViewById(R.id.chipGroup2);

chipGroup.setOnCheckedChangeListener(new OnCheckedChangeListener() {
    @Override
    public void onCheckedChanged(ChipGroup group, @IdRes int checkedId) {
         String hintStr=" ";
         switch(checkedId){
                case R.id.chipInGroup2_1:
                      hintStr = "被選中的是 chipInGroup2_1 ";
                      break;
                case R.id.chipInGroup2_2 :
                      hintStr = "被選中的是 chipInGroup2_2 ";
                      break;
                case R.id.chipInGroup2_3:
                      hintStr = "被選中的是 chipInGroup2_3 ";
                      break;
                default:
                      hintStr = "沒有選中任何chip";
                      break;
        }
        Toast.makeText(mActivity, hintStr, Toast.LENGTH_SHORT).show()
    }
});

(2)、getCheckedChipId( )

獲取被選中的 ChipId
注意:只有 singleSelction=true 時(shí)阶淘,該方法才有效衙吩。

示例代碼省略互妓。

(3)溪窒、實(shí)現(xiàn)永遠(yuǎn)都有一個(gè)被選中的效果

為 ChipGroup 設(shè)置 singleSelection = true 之后,如果我們每次點(diǎn)擊的 chip 不是同一個(gè) chip , 那么可以實(shí)現(xiàn)類似 RadioGroup 的效果冯勉,但是澈蚌,當(dāng)我們?cè)俅吸c(diǎn)擊一個(gè)被選中的 chip 之后,就會(huì)取消其選中狀態(tài)——此時(shí)灼狰,ChipGroup 中就沒有被選中的條目了宛瞄。

ChipGroup 的源碼中是這么處理單選事件的:

private class CheckedStateTracker implements android.widget.CompoundButton.OnCheckedChangeListener {
        private CheckedStateTracker() {
        }

        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
            if (!ChipGroup.this.protectFromCheckedChange) {
                int id = buttonView.getId();
                if (isChecked) {
                    if (ChipGroup.this.checkedId != -1 && ChipGroup.this.checkedId != id && ChipGroup.this.singleSelection) {
                        ChipGroup.this.setCheckedStateForView(ChipGroup.this.checkedId, false);
                    }
                    ChipGroup.this.setCheckedId(id);
                } else if (ChipGroup.this.checkedId == id) {
                    // CnPeng 如果點(diǎn)擊了被選中的 chip , 則取消選中
                    ChipGroup.this.setCheckedId(-1);
                }
            }
        }
    }

如果確實(shí)需要實(shí)現(xiàn)這種永遠(yuǎn)有一個(gè)被選中的效果,可以在 onCheckedChangeListener 中做處理交胚,思路是: 當(dāng) checkedId ==-1 時(shí)份汗,配置一個(gè)默認(rèn)選中項(xiàng)。示例如下:

private fun initChipGroupCheckedListener() {
        //ChipGroup中設(shè)置選中監(jiān)聽-- 只有單選的chipGroup才可以使用
        chipGroup2.setOnCheckedChangeListener { chipGroup, selectedId ->
            var hintStr = ""
            when (selectedId) {
                R.id.chipInGroup2_1 -> hintStr = "被選中的是 chipInGroup2_1 "
                R.id.chipInGroup2_2 -> hintStr = "被選中的是 chipInGroup2_2 "
                R.id.chipInGroup2_3 -> hintStr = "被選中的是 chipInGroup2_3 "
                else -> {
                    hintStr = "沒有選中任何chip__手動(dòng)設(shè)置一個(gè)作為默認(rèn)選中"
                    chipInGroup2_1.isChecked = true
                }
            }
            Toast.makeText(mActivity, hintStr, Toast.LENGTH_SHORT).show()
        }
    }

六蝴簇、ChipDrawable

繼承自 Drawable杯活。

1、xml 中定義ChipDrawable

注意事項(xiàng):

  • 必須在 res 目錄下新建 xml 文件夾熬词,在 xml 文件夾下創(chuàng)建 .xml 文件旁钧,其他文件夾下創(chuàng)建會(huì)報(bào)錯(cuò)
  • xml 中以 <chip> 開頭
  • chip 節(jié)點(diǎn)中可以使用 Chip 的全部屬性吸重。
  • xml 中定義的<chip> 默認(rèn)是 Entry 樣式的,我們也可以根據(jù)需要更換成 filter/Action/Choice
  • res/xml/standalone_chip.xml
<chip
    xmlns:app="http://schemas.android.com/apk/res-auto"
    app:chipIcon="@drawable/ic_avatar_circle_24"
    android:text="@string/hello_world"/>
  • ChipActivity.kt 中應(yīng)用
//直接以 Span的形式將 chipDrawable 加入到 EditText中歪今,這樣看著很好嚎幸,但是,ChipDrawable 中clos額Icon的點(diǎn)擊事件沒法實(shí)現(xiàn)啊
bt_applyChip.setOnClickListener { view ->
    val chipDrawable = ChipDrawable.createFromResource(mActivity, R.xml.chip_drawable_1)
    val text = editText.text
    val newInputText = text.substring(mPreSelectionEnd, text.length)
    chipDrawable.setText(newInputText)
    chipDrawable.setBounds(0, 0, chipDrawable.intrinsicWidth, chipDrawable.intrinsicHeight)
    val span = ImageSpan(chipDrawable)
    text.setSpan(span, mPreSelectionEnd, text.length, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE)
    editText.setOnKeyListener(this)
    mPreSelectionEnd = text.length
}

七寄猩、補(bǔ)充:

1嫉晶、關(guān)于 textApperence

android:textAppearance 設(shè)置文字外觀。如“ ?android:attr/textAppearanceLargeInverse
”這里引用的是系統(tǒng)自帶的一個(gè)外觀田篇,车遂?表示系統(tǒng)是否有這種外觀,否斯辰,則使用默認(rèn)的外觀舶担。可設(shè)置的值如下:

  • textAppearanceButton
  • textAppearanceInverse
  • textAppearanceLarge
  • textAppearanceLargeInverse
  • textAppearanceMedium
  • textAppearanceMediumInverse
  • textAppearanceSmall
  • textAppearanceSmallInverse

2彬呻、MotionSpec

https://developer.android.com/reference/com/google/android/material/animation/MotionSpec?hl=zh-cn

八衣陶、 參考:

官方:
https://developer.android.com/reference/com/google/android/material/chip/Chip?hl=zh-cn

https://developer.android.com/reference/com/google/android/material/chip/ChipGroup#addview


含示例代碼
https://material.io/develop/android/components/chip/

https://medium.com/material-design-in-action/chips-material-components-for-android-46001664a40f


其他Chip的實(shí)現(xiàn)
https://stackoverflow.com/questions/36563739/chips-component-in-android-support-library

引入支持庫的參考:
https://stackoverflow.com/questions/50289355/google-material-design-library-error-program-type-already-present-android-suppo


最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市闸氮,隨后出現(xiàn)的幾起案子剪况,更是在濱河造成了極大的恐慌,老刑警劉巖蒲跨,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件译断,死亡現(xiàn)場離奇詭異,居然都是意外死亡或悲,警方通過查閱死者的電腦和手機(jī)孙咪,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來巡语,“玉大人翎蹈,你說我怎么就攤上這事∧泄” “怎么了荤堪?”我有些...
    開封第一講書人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長枢赔。 經(jīng)常有香客問我澄阳,道長,這世上最難降的妖魔是什么踏拜? 我笑而不...
    開封第一講書人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任碎赢,我火速辦了婚禮,結(jié)果婚禮上执隧,老公的妹妹穿的比我還像新娘揩抡。我一直安慰自己户侥,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開白布峦嗤。 她就那樣靜靜地躺著蕊唐,像睡著了一般。 火紅的嫁衣襯著肌膚如雪烁设。 梳的紋絲不亂的頭發(fā)上替梨,一...
    開封第一講書人閱讀 49,166評(píng)論 1 284
  • 那天,我揣著相機(jī)與錄音装黑,去河邊找鬼副瀑。 笑死,一個(gè)胖子當(dāng)著我的面吹牛恋谭,可吹牛的內(nèi)容都是我干的糠睡。 我是一名探鬼主播,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼疚颊,長吁一口氣:“原來是場噩夢(mèng)啊……” “哼狈孔!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起材义,我...
    開封第一講書人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤均抽,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后其掂,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體油挥,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年款熬,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了深寥。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡华烟,死狀恐怖翩迈,靈堂內(nèi)的尸體忽然破棺而出持灰,到底是詐尸還是另有隱情盔夜,我是刑警寧澤,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布堤魁,位于F島的核電站喂链,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏妥泉。R本人自食惡果不足惜椭微,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望盲链。 院中可真熱鬧蝇率,春花似錦迟杂、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至锅尘,卻和暖如春监氢,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背藤违。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來泰國打工浪腐, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人顿乒。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓议街,卻偏偏與公主長得像,于是被迫代替她去往敵國和親璧榄。 傳聞我的和親對(duì)象是個(gè)殘疾皇子傍睹,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容