错误膨胀 class com.google.android.material.button.MaterialButton
Error inflating class com.google.android.material.button.MaterialButton
我想要实现的是拥有一个内部带有一些 materialButton 的 gridview。
我试图像这样创建 gridview:
<GridView
android:id="@+id/login_gridview_code_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:numColumns="3"
android:horizontalSpacing="15dp"
android:verticalSpacing="15dp">
</GridView>
要膨胀的元素如:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.button.MaterialButton
android:id="@+id/button_code_digit"
style="@style/Widget.MaterialComponents.Button.OutlinedButton.Icon"
android:layout_width="50dp"
android:layout_height="50dp"
android:insetLeft="0dp"
android:insetTop="0dp"
android:insetRight="0dp"
android:insetBottom="0dp"
android:padding="0dp"
app:iconGravity="textStart"
app:iconPadding="0dp"
app:iconSize="40dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.pswStorer.Button.Circle" />
</androidx.constraintlayout.widget.ConstraintLayout>
适配器给按钮充气:
view = inflter.inflate(R.layout.button_code, null); // inflate the layout
但我总是收到这个堆栈跟踪:
Error inflating class com.google.android.material.button.MaterialButton
Caused by: java.lang.IllegalArgumentException: The style on this component requires your app theme to be Theme.MaterialComponents (or a descendant).
我检查了 appTheme,但对我来说似乎是正确的:
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="materialAlertDialogTheme">@style/AlertDialogMaterialTheme</item>
</style>
有什么想法吗?
编辑:我尝试检查并且我的应用有正确的主题
android:theme="@style/AppTheme"
我也把主题改成了Theme.MaterialComponents.DayNight.NoActionBar.Bridge但是什么都没变
检查您的AndroidManifest.xml您是否也为您的应用使用了正确的主题
<application
android:theme="@style/AppTheme"
...>
更改主题
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar">
至
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar.Bridge">
问题就在这里。
inflter = (LayoutInflater.from(applicationContext));
应用程序上下文没有您的应用主题。
您必须使用像 Activity
.
这样的主题上下文
我想要实现的是拥有一个内部带有一些 materialButton 的 gridview。 我试图像这样创建 gridview:
<GridView
android:id="@+id/login_gridview_code_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:numColumns="3"
android:horizontalSpacing="15dp"
android:verticalSpacing="15dp">
</GridView>
要膨胀的元素如:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.button.MaterialButton
android:id="@+id/button_code_digit"
style="@style/Widget.MaterialComponents.Button.OutlinedButton.Icon"
android:layout_width="50dp"
android:layout_height="50dp"
android:insetLeft="0dp"
android:insetTop="0dp"
android:insetRight="0dp"
android:insetBottom="0dp"
android:padding="0dp"
app:iconGravity="textStart"
app:iconPadding="0dp"
app:iconSize="40dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.pswStorer.Button.Circle" />
</androidx.constraintlayout.widget.ConstraintLayout>
适配器给按钮充气:
view = inflter.inflate(R.layout.button_code, null); // inflate the layout
但我总是收到这个堆栈跟踪:
Error inflating class com.google.android.material.button.MaterialButton
Caused by: java.lang.IllegalArgumentException: The style on this component requires your app theme to be Theme.MaterialComponents (or a descendant).
我检查了 appTheme,但对我来说似乎是正确的:
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="materialAlertDialogTheme">@style/AlertDialogMaterialTheme</item>
</style>
有什么想法吗?
编辑:我尝试检查并且我的应用有正确的主题
android:theme="@style/AppTheme"
我也把主题改成了Theme.MaterialComponents.DayNight.NoActionBar.Bridge但是什么都没变
检查您的AndroidManifest.xml您是否也为您的应用使用了正确的主题
<application
android:theme="@style/AppTheme"
...>
更改主题
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar">
至
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar.Bridge">
问题就在这里。
inflter = (LayoutInflater.from(applicationContext));
应用程序上下文没有您的应用主题。
您必须使用像 Activity
.