繁体   English   中英

为什么在使用 Material 按钮时我的应用程序崩溃?

[英]why crash my app when use the Material button?

我想使用 materail 按钮,但是当我编写并运行程序时,程序崩溃了。 我需要什么帮助?

这是我的代码

<com.google.android.material.button.MaterialButton
    style="@style/TextAppearance.MaterialComponents.Button"
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button"/>

这个 build.gradle

 implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'com.google.android.material:material:1.0.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' testImplementation 'junit:junit:4.12' implementation 'com.squareup.okhttp3:okhttp:4.2.2' implementation 'com.squareup.picasso:picasso:2.71828' implementation 'com.squareup.okhttp:okhttp:2.7.5' implementation 'de.hdodenhof:circleimageview:3.0.1' implementation 'com.wang.avi:library:2.1.3' implementation 'com.github.pwittchen:swipe-rx2:0.3.0' implementation 'com.ogaclejapan.smarttablayout:library:2.0.0@aar' implementation 'com.ogaclejapan.smarttablayout:utils-v4:2.0.0@aar' implementation 'com.mcxiaoke.volley:library:1.0.19' compile 'com.github.bumptech.glide:glide:3.8.0' implementation 'org.greenrobot:eventbus:3.1.1'

要使 MaterialButton 工作,App 主题必须从 Theme.MaterialComponents(或后代)继承

<style name="AppTheme" parent="Theme.MaterialComponents.Light">

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM