gpt4 book ai didi

android - 使用 getCurrentTextColor() 设置文本颜色

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:43:35 25 4
gpt4 key购买 nike

我需要从 TextView 获取当前文本颜色,然后将此值分配给 TextView.setTextColor()。但是我得到一个很大的 int -1979711488138,我怎样才能从中得到颜色?

最佳答案

Integer intColor = -1979711488138;
String hexColor = "#" + Integer.toHexString(intColor).substring(2);

String hexColor = String.format("#%06X", (0xFFFFFF & intColor));

关于android - 使用 getCurrentTextColor() 设置文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31986240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com