当前位置: 首页 > 知识库问答 >
问题:

CreateFromRessource ChipDrawable:此组件上的样式要求应用程序主题为主题。材料成分

西门鹏程
2023-03-14

使用AppCompat并使用min 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" />

我的主题使用主题。材料组件。白天晚上。DarkActionBar(我还尝试了主题、材质组件、DayNight、DarkActionBar、Bridge

但我总是会犯这样的错误:

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

我尝试了我在stackoverflow上找到的所有东西,但没有多大帮助。

这是我的风格

<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'
}

共有2个答案

扶绍辉
2023-03-14

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

getLayoutInflater()

试着从活动中而不是应用中获取你的充气器,只需使用

(LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE)
高嘉树
2023-03-14

问题在这里:

ChipDrawable chip = ChipDrawable.createFromResource(getApplicationContext(),

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

 类似资料: