Android TextInputLayout的全局样式无效

Android TextInputLayout的全局样式无效,android,material-design,material-components-android,android-textinputlayout,Android,Material Design,Material Components Android,Android Textinputlayout,我想将TextInputLayout上的自定义样式全局设置为: <resources xmlns:tools="http://schemas.android.com/tools"> <!-- Base application theme. --> <style name="Theme.BudgetTracker" parent="Theme.MaterialComponents.DayNight.No

我想将
TextInputLayout
上的自定义样式全局设置为:

<resources xmlns:tools="http://schemas.android.com/tools">
    <!-- Base application theme. -->
    <style name="Theme.BudgetTracker" parent="Theme.MaterialComponents.DayNight.NoActionBar">
        <!-- Primary brand color. -->
        ...
        <!-- Secondary brand color. -->
        ...
        <!-- Status bar color. -->
        ...
        <!-- Customize your theme here. -->
        <item name="fontFamily">@font/regular</item>
        <!-- TextInputLayout-->
        <item name="textInputStyle">@style/Widget.MyNiceAppName.TextInputLayout.OutlinedBox</item>
    </style>

    <style name="Widget.MyNiceAppName.TextInputLayout.OutlinedBox" parent="Widget.MaterialComponents.TextInputLayout.OutlinedBox">
        <item name="android:imeOptions">actionNext</item>
        <item name="android:maxLines">1</item>
    </style>

</resources>

...
...
...
@字体/常规
@style/Widget.MyNiceAppName.TextInputLayout.OutlinedBox
下一步行动
1.
我的片段布局是

 <com.google.android.material.textfield.TextInputLayout
        android:id="@+id/outlinedTextField"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="16dp"
        android:layout_marginEnd="16dp"
        android:layout_marginTop="32dp"
        android:hint="@string/label_email"
        android:inputType="textEmailAddress"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/acll">

        <com.google.android.material.textfield.TextInputEditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

    </com.google.android.material.textfield.TextInputLayout>


但它从来都不起作用。非常感谢您对上述问题解决方案提出的任何建议。

您必须将这些属性应用于
文本输入文本
而不是
文本输入布局

在您的情况下,您可以使用:

<style name="Widget.MyNiceAppName.TextInputLayout.OutlinedBox" parent="Widget.MaterialComponents.TextInputLayout.OutlinedBox">
    <item name="materialThemeOverlay">
        @style/ThemeOverlay.App.TextInputEditText.OutlinedBox
    </item>
</style>

<style name="ThemeOverlay.App.TextInputEditText.OutlinedBox" parent="ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox">
    <item name="editTextStyle">@style/Widget.App.TextInputEditText.OutlinedBox</item>
</style>

<style name="Widget.App.TextInputEditText.OutlinedBox" parent="Widget.MaterialComponents.TextInputEditText.OutlinedBox">
    <item name="android:imeOptions">actionNext</item>
    <item name="android:maxLines">1</item>
</style>

我在我的应用程序中尝试了相同的代码,成功了。是“maxlines”似乎不适合你吗?谢谢,但就我而言,
android:imeOptions
android:maxlines
都不适合你。
   <com.google.android.material.textfield.TextInputEditText
        android:inputType="textEmailAddress"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />