当我将以下代码添加到layout.xml文件时,加载布局时应用程序崩溃。
代码:
<android.support.design.button.MaterialButton
android:id="@+id/b_p_add"
android:layout_width="143dp"
android:layout_height="38dp"
android:layout_below="@+id/et_p_addl_notes"
android:layout_centerHorizontal="true"
android:layout_marginTop="43dp" />
我检查了我的应用gradle文件并发现
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
因此,存在必需的设计,支持,appcompat依赖项。
注意:除上述代码外,未添加任何其他代码,即,如果我未在XML中添加“材质”按钮,则该应用程序运行正常,如果在XML中添加了“材质”按钮,则该应用程序将崩溃。
答案 0 :(得分:2)
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<style name="AppTheme" parent="Theme.MaterialComponents.Light">
要使MaterialButton正常工作,您的应用主题必须继承自Theme.MaterialComponents(或其后代) 希望对您有所帮助。