前端之家收集整理的这篇文章主要介绍了
android – 我可以获得EditText的默认提示颜色吗?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法从EditText
获取提示颜色?
我需要颜色将其设置为EditText的文本颜色
我猜你可以用这个:
final ColorStateList colors = editText.getHintTextColors();
editText.setTextColor(colors);
请注意,提示颜色实际上是ColorStateList.
原文链接:https://www.f2er.com/android/312388.html