我 试图 实现 的 是 有 一 个 网格 视图 与 一些 materialButton 内 。 我 试图 创建 网格 视图 如下 :
<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>
格式
适配 器 使 按钮 膨胀 :
inflter = (LayoutInflater.from(applicationContext));
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 * * , 但 没有 任何 更改
4条答案
按热度按时间xlpyo6sf1#
问题就在这里。
应用程序上下文没有您的应用程序主题。
你必须使用一个主题上下文,比如
Activity
。6uxekuva2#
检查您的AndroidManifest.xml,确定您正在为应用程序使用正确的主题
hgb9j2n63#
更改主题
至
n53p2ov04#
如果你有一个单独的主题为晚上不要忘记改变到主题。材料组件主题也有。