作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的一个应用程序中,我使用的是 Theme.MaterialComponents.Light.NoActionBar
作为基本风格。在这种风格中,我称之为 AppTheme
,我正在尝试覆盖 editTextStyle
为 com.google.android.material.textfield.TextInputEditText
提供自定义样式(根据源代码,它使用 R.attr.editTextStyle
作为默认样式)。
这是我当前的主题,与 TIEditText 和 TILayout 相关:
<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
[ primary and secondary colors, OnColors, etc.]
<item name="editTextStyle">@style/AppTheme.TextInputEditText</item>
<item name="textInputStyle">@style/AppTheme.TextInputLayout</item>
[ Custom attribute for testing, defined in attrs.xml ]
<item name="textInputEditTextStyle">@style/AppTheme.TextInputEditText</item>
</style>
editTextStyle
,如果我在代码中使用它,它不会被应用:
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/tilFirstName"
style="?attr/textInputStyle"
android:hint="@string/label_firstname"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/firstName"
style="?attr/editTextStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPersonName"
android:text="@={viewModel.firstName}" />
</com.google.android.material.textfield.TextInputLayout>
firstName
的样式与
?attr/textInputEditTextStyle
, 有用。
editTextStyle
在默认主题中?这到底是怎么回事?
1.1.0-alpha06
最佳答案
让我们跳过我们都认识到Android主题和风格是人类设计的最荒谬的黑客和猜测荒地的部分。
这是对上一个答案的扩展。同样愚蠢的“黑客”。我能够设置 TextInputEditText
的样式通过设置 editTextStyle
,但不是它直观所属的位置,而是在自定义 materialThemeOverlay
中嵌套在为 textInputStyle
定义的样式中.见证:
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- works fine -->
<item name="textInputStyle">@style/AppTheme.TextInputLayoutStyle</item>
<!-- should work fine, doesn't work, happily ignored -->
<!-- <item name="editTextStyle">@style/AppTheme.TextInputEditTextStyle</item> -->
</style>
<style name="AppTheme.TextInputLayoutStyle" parent="Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<!-- other props (boxBackgroundMode, boxBackgroundColor, boxStrokeColor, etc) -->
<!-- can we set editTextStyle from here? Of course not! We should magically know we need a material theme overlay-->
<item name="materialThemeOverlay">@style/AppTheme.MaterialThemeOverlay</item>
</style>
<!-- style inception! a style, child of another style, whose only purpose is to refer to yet another style -->
<style name="AppTheme.MaterialThemeOverlay">
<item name="editTextStyle">@style/AppTheme.TextInputEditTextStyle</item>
</style>
<!-- finally, the style we SHOULD have been able to set from the theme -->
<style name="AppTheme.TextInputEditTextStyle" parent="@style/Widget.MaterialComponents.TextInputEditText.OutlinedBox">
<item name="android:textColor">@color/white</item>
</style>
关于android - 覆盖 editTextStyle 不适用于最新的 Material Components 基本样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56044075/
在我的一个应用程序中,我使用的是 Theme.MaterialComponents.Light.NoActionBar作为基本风格。在这种风格中,我称之为 AppTheme ,我正在尝试覆盖 edit
我是一名优秀的程序员,十分优秀!