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.
我正在尝试为我的摇摆 UI 的某些区域着色,但感觉受限于使用
.setBackground(Color.//color here
有什么方法可以在其中使用更具体和独特颜色的十六进制值(甚至没有棕色)?每当我尝试时,都会显示错误。
尝试
new Color(int r, int g, int b)
用于 RGB
new Color(int r, int g, int b, int a)
对于 ARGB(a=alpha 透明度)