提问人:ghita 提问时间:7/21/2019 最后编辑:ghita 更新时间:2/28/2022 访问量:37024
夸大类 com.google.android.material.textfield.TextInputLayout 时出错
Error inflating class com.google.android.material.textfield.TextInputLayout
问:
这是我的应用主题:<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
我遇到了一个因未使用所需主题而导致的膨胀错误。在 我没有覆盖我收到此错误的活动的主题,因此使用了 definded in 的 AppTheme。Manifest
styles.xml
错误:
android.view.InflateException: Binary XML file line #122: Binary XML file line #122: Error inflating class com.google.android.material.textfield.TextInputLayout
Caused by: android.view.InflateException: Binary XML file line #122: Error inflating class com.google.android.material.textfield.TextInputLayout
Caused by: java.lang.reflect.InvocationTargetException
at java.lang.reflect.Constructor.newInstance0(Native Method)
at java.lang.reflect.Constructor.newInstance(Constructor.java:334)
at android.view.LayoutInflater.createView(LayoutInflater.java:647)
...
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807)
Caused by: java.lang.IllegalArgumentException: The style on this component requires your app theme to be Theme.MaterialComponents (or a descendant).
at com.google.android.material.internal.ThemeEnforcement.checkTheme(ThemeEnforcement.java:240)
at com.google.android.material.internal.ThemeEnforcement.checkMaterialTheme(ThemeEnforcement.java:215)
at com.google.android.material.internal.ThemeEnforcement.checkCompatibleTheme(ThemeEnforcement.java:143)
at com.google.android.material.internal.ThemeEnforcement.obtainTintedStyledAttributes(ThemeEnforcement.java:116)
这是我的xml:
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/inputFirstName"
style="@style/EditText.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="10dp"
android:layout_marginEnd="16dp"
android:visibility="gone"
app:boxStrokeColor="@color/colorBrand"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
和 EditText 样式:
<style name="EditText.OutlinedBox" parent="Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<item name="android:minHeight">56dp</item>
<item name="android:textSize">18sp</item>
<item name="android:fontFamily">@font/nunito_regular</item>
<item name="android:textColorHint">@color/colorTextSecondary</item>
<item name="hintTextColor">@color/colorBrand</item>
<item name="hintEnabled">true</item>
</style>
应用程序的目标 sdk 是 29,我使用material_design_components_version = '1.1.0-alpha08'
编辑:
从app/gradle
implementation(
"androidx.appcompat:appcompat:$appcompat_version",
"androidx.constraintlayout:constraintlayout:$constraintlayout_version",
"com.google.android.material:material:$material_design_components_version"
)
清单:
<application
android:name=".application.BaseApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:usesCleartextTraffic="true">
主题:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowLightStatusBar">true</item>
<item name="android:fontFamily">@font/nunito_regular</item>
<item name="android:lineSpacingExtra">0dp</item>
<item name="android:includeFontPadding">false</item>
<item name="navigationIcon">@drawable/ic_back_dark</item>
<item name="android:windowBackground">@color/colorWhite</item>
<item name="bottomSheetDialogTheme">@style/AppBottomSheetDialogTheme</item>
</style>
答:
1赞
LionErez
7/26/2019
#1
问题出在材料版本上。 尝试更改您的版本 alpha06,它应该可以修复它:
implementation 'com.google.android.material:material:1.1.0-alpha06'
评论
6赞
ghita
7/26/2019
不,问题在于 TextInput 位于对话框中,而我用于对话的上下文是打开对话框的活动上下文,而不是打开对话框的片段上下文
0赞
Md Nakibul Hassan
12/14/2021
这对我来说似乎很好用。谢谢。
53赞
Paulo C.
2/5/2020
#2
尝试在父布局中应用此样式:
android:theme=“@style/Theme.MaterialComponents.DayNight.DarkActionBar”
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:orientation="vertical"
android:theme="@style/Theme.MaterialComponents.DayNight.DarkActionBar">
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
<com.google.android.material.textfield.TextInputEditText
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
这是一个示例,为了完整使用,在你的应用样式中放入父级,例如:
<style name="MyApp" parent="Theme.MaterialComponents">
评论
0赞
Matt
7/5/2021
在布局中设置主题可能是一个有用的调试工具。但是,典型的应用程序会在 AndroidManifest.xml 中设置应用程序范围的主题。此主题通常在 中定义,并且应该具有 的父级(或类似)。values/themes.xml
Theme.MaterialComponents.DayNight.DarkActionBar
7赞
lino
7/5/2020
#3
我实现了这个:
implementation 'com.google.android.material:material:1.0.0'
然后我将样式从:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
自:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
4赞
Nurseyit Tursunkulov
8/27/2020
#4
launchFragmentInContainer<LoginFragment>(themeResId =R.style.AppTheme)
在构造函数中添加主题!!
评论
0赞
renatoarg
11/21/2020
这是我唯一需要做的事情。像魅力一样工作,谢谢!
0赞
Nurseyit Tursunkulov
11/22/2020
@renatoarg不客气,很高兴听到它对某人有所帮助。
0赞
Subratsss
3/22/2021
感谢您分享解决方案。我的救命稻草。
1赞
Mostafa Onaizan
2/28/2022
#5
检查您的主题继承,就我而言,在浅色主题中,我继承了材质组件,在深色主题中,我继承了 material3
评论