1. ホーム
  2. Android

カラーバリューがマイナス

2022-02-21 20:40:07
<パス

今日、私は色の値が負であるというコードの一部を見た

View().setBackgroundColor(-16777216);

ここの色の値は10進数ですが、アンドロイドの16進数範囲は000000-ffffffなので、この色の値は16進数では一体何を意味するのでしょうか?

System.out.println(String.format("%08x",-16777216));
'Print the result ff000000,opaque ff black000000,-16777216 is a 32-bit signed integer'
'This java code can be run directly online at https://c.runoob.com/compile/10'