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 ... です。
タイマー タスクを使用して、0xFF888888 に達するまで実行ごとに 0x10101 を追加します。
実際には文字列ではなく、int などの数値が必要な場合があります。ただし、文字列が必要な場合は、int を使用して作業を行い、必要に応じて Integer.toHexString() を使用して結果を変換するのは簡単です。 .