Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有 0xFF222222 并希望它在 5 分钟内达到 0xFF888888。使用 Java (android) 改变它的最简单方法是什么?
RGB 必须始终保持相等,这意味着 0xFF222222 -> 0xFF232323 -> 0xFF242424 ...
使用计时器任务在每次执行时添加 0x10101,直到达到 0xFF888888
很有可能您实际上并不想要一个字符串,而是一个诸如 int 之类的数值 - 尽管如果您确实想要一个字符串,使用 int 完成工作并在需要时使用 Integer.toHexString() 转换结果很容易.