我正在尝试将 TextInputLayout 提示文本样式更改为粗体。我使用TextAppearance更改了样式中的颜色和其他样式的提示:
<style name="MyTextInputLayoutTheme" parent="@android:style/TextAppearance">
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">match_parent</item>
<item name="android:textColorHint">@color/black_50</item>
<item name="colorControlNormal">@color/green</item>
<item name="hintAnimationEnabled">false</item>
</style>
我试图设置
<item name="android:textStyle">normal</item>
或者
<item name="android:textStyle">bold</item>
但它不起作用。提示文本总是有编辑文本的样式(如果edittext是粗体,它会自动有粗体提示,如果不是,提示是正常的):