更改 TextInputLayout 仅提示文本样式
Posted
技术标签:
【中文标题】更改 TextInputLayout 仅提示文本样式【英文标题】:Change TextInputLayout only hint text style 【发布时间】:2017-03-06 05:57:29 【问题描述】:我正在尝试将 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是粗体,它会自动有粗体提示,如果不是,提示是正常的):
【问题讨论】:
【参考方案1】:最容易想到的是:
在strings.xml中<string name="myHint"><b>Your hint here</b></string>
在你的 layout.xml 文件中<EditText android:hint="@string/myHint"/>
【讨论】:
以上是关于更改 TextInputLayout 仅提示文本样式的主要内容,如果未能解决你的问题,请参考以下文章
Android - 如何更改 TextInputLayout(材料组件)中的文本颜色?
使用 TextInputLayout 时更改 EditText 提示颜色