如何为整个布局设置提示文本颜色?

Arn*_*ati 3 android android-layout android-styles

有没有什么方法可以为整个布局设置提示文本颜色(setHintTextColor),即该布局中的所有子元素?

此外,我更喜欢以编程方式,而不是通过布局xml.

Ric*_*ick 10

您可以创建自己的theme样式colorHint:

<style name="AppTheme" parent="Theme.AppCompat"
    <item name="android:textColorHint">@color/text_color_hint</item>
</style>
Run Code Online (Sandbox Code Playgroud)