AndroidX Q材质组件无法正常工作

时间:2019-11-09 13:48:17

标签: android androidx material-components-android

我刚刚使用最新版本的Android Studio 3.5.2开始了一个新项目。最低API-19,并使用SDK Q,这迫使我们使用AndroidX。

com.google.android.material.textfield.TextInputLayout
  

提供错误:Android资源链接失败。

使用此设置,我正在尝试使用Material Component,但它不起作用。

我不确定AndroidX或Material组件中是否已包含任何更改。但是,无论如何,我还是添加了物质依赖。

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

    // here is the one
    implementation 'com.google.android.material:material:1.2.0-alpha01'
}

所以我的问题是如何在此设置中使用材料组件。

enter image description here

0 个答案:

没有答案