CreateFromRessource ChipDrawable : 此组件上的样式要求您的应用主题为 Theme.MaterialComponents

CreateFromRessource ChipDrawable : The style on this component requires your app theme to be Theme.MaterialComponents

通过使用 AppCompat 和最小 sdk 版本 21,我尝试使用 ChipDrawable 在 TextEdit 中的电子邮件地址列表中使用,并且我创建了 ChipDrawable:

ChipDrawable chip = ChipDrawable.createFromResource(getApplicationContext(), R.xml.email_chip);

使用这个 xml :

<?xml version="1.0" encoding="utf-8"?>
<chip xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    app:chipBackgroundColor="?colorAccent"
    app:closeIconEnabled="true"
    app:closeIconTint="@android:color/white" />

我的主题使用Theme.MaterialComponents.DayNight.DarkActionBar(我也试过Theme.MaterialComponents.DayNight.DarkActionBar.Bridge

但我总是得到这个错误:

The style on this component requires your app theme to be Theme.MaterialComponents (or a descendant).

我尝试了在 Whosebug 上找到的所有内容,但没有太大帮助。

这是我的风格

<resources xmlns:tools="http://schemas.android.com/tools">
    <!-- Base application theme. -->
    <style name="Theme.Mareu" parent="Theme.MaterialComponents.DayNight.DarkActionBar.Bridge">
        <!-- Primary brand color. -->
        <item name="colorPrimary">#4E92DF</item>
        <item name="colorPrimaryVariant">#3F7ABD</item>
        <item name="colorOnPrimary">@color/white</item>
        <!-- Secondary brand color. -->
        <item name="colorSecondary">@color/teal_200</item>
        <item name="colorSecondaryVariant">@color/teal_700</item>
        <item name="colorOnSecondary">@color/black</item>
        <!-- Status bar color. -->
        <item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
        <!-- Customize your theme here. -->
    </style>
</resources>

这是我的部分作品

dependencies {
    // Extra
    implementation 'org.greenrobot:eventbus:3.1.1'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
    implementation 'androidx.recyclerview:recyclerview:1.1.0'
    implementation 'com.google.android.material:material:1.2.1'

    // Compat
    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'

    // TU TI
    testImplementation 'org.hamcrest:java-hamcrest:2.0.0.0'

    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}

您肯定在您的应用中使用了视图绑定,并且您正在使用

膨胀您的视图
getLayoutInflater()

尝试从 activity 而不是应用程序获取充气机,只需使用

(LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE)

问题在这里:

ChipDrawable chip = ChipDrawable.createFromResource(getApplicationContext(),

ApplicationContext没有您的应用主题。
您需要传递 Activity,而不是应用程序上下文。