如何修复Android Studio中的素材按钮错误?

时间:2018-10-13 21:22:38

标签: android xml android-studio

我试图在我的xml设计中使用Material按钮,但是我发现了一个错误。 缺少班级
找不到android.support.design.button.MaterialButton类

我如何解决此错误? 我的xml和依赖项已附加

这是我的xml代码

<android.support.design.button.MaterialButton
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/login"
            android:text="Login"
            android:layout_marginRight="20dp"
            android:layout_marginLeft="10dp"
            android:layout_marginTop="10dp" />

依赖项

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support:design:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'

}

1 个答案:

答案 0 :(得分:0)

您正在使用旧版本的库。

要使用Material Components,您需要使用Android Studio 3.2或更高版本中Refactor中的迁移到Androidx 选项。

并使用该库

implementation 'com.google.android.material:material:1.0.0'

或者,如果您想继续使用支持库,则需要将库更新到v28.0.0

有关更多信息,您可以参考以下链接:Material Components Getting Started

请勿同时在您的应用中使用com.android.support和com.google.android.material依赖项。

要将库升级到28.0.0:

在应用程序gradle文件中,将compileSdkVersiontargetSdkVersion设置为28

,例如,将支持库编号更改为28.0.0

implementation 'com.android.support:design:28.0.0'