博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android Color颜色代码
阅读量:4980 次
发布时间:2019-06-12

本文共 2439 字,大约阅读时间需要 8 分钟。

常用颜色代码

#3F51B5
#303F9F
#FF4081
#ff822b
#C0C0C0
#A9A9A9
#808080
#696969
#ff3300
#ff0000
#e46634
#ff7e00
#de7424
#ed6d10
#FFB6C1
#DB7093
#FF1493
#DA70D6
#FF00FF
#9400D3
#8B008B
#4B0082
#483D8B
#191970
#90EE90
#00FF00
#228B22
#006400
#7FFF00
#87CEFA
#00BFFF
#B0E0E6
#5F9EA0
#008B8B
#FFFF00
#EEE8AA
#FFD700
#DAA520
#B8860B
#8B4513
#111111
#ffffff
#a0a0a0
#00000000
#00479d
#fff100
#d3ac71
#f39500
#601986
#704929
#26d4d0

 常用获取颜色的方法

//#FFB6C1转成Intint color = Color.parseColor("#FFB6C1") //或者直接写成 0xFFFFB6C1//ARGB转Intint color = Color.argb(255, 255, 255, 255);//获取color.xml的颜色资源int color = getResources().getColor(R.color.red);

获取颜色RGB值

public static String toHexEncoding(int color) {        String R, G, B;        StringBuffer sb = new StringBuffer();        R = Integer.toHexString(Color.red(color));        G = Integer.toHexString(Color.green(color));        B = Integer.toHexString(Color.blue(color));        //判断获取到的R,G,B值的长度 如果长度等于1 给R,G,B值的前边添0        R = R.length() == 1 ? "0" + R : R;        G = G.length() == 1 ? "0" + G : G;        B = B.length() == 1 ? "0" + B : B;        sb.append("0x");        sb.append(R);        sb.append(G);        sb.append(B);        return sb.toString();    }

颜色代码在线转换

 

转载于:https://www.cnblogs.com/94xiyang/p/9367202.html

你可能感兴趣的文章
编写高质量代码--改善python程序的建议(六)
查看>>
windows xp 中的administrator帐户不在用户登录内怎么解决?
查看>>
接口和抽象类有什么区别
查看>>
Codeforces Round #206 (Div. 2)
查看>>
**p
查看>>
优先队列详解
查看>>
VS2012 创建项目失败,,提示为找到约束。。。。
查看>>
设计类图
查看>>
类对象
查看>>
[Voice communications] 声音的滤波
查看>>
软件建模——第9章 毕业论文管理系统—面向对象方法
查看>>
[SDOI2008]洞穴勘测
查看>>
Difference between Linearizability and Serializability
查看>>
IDEA使用操作文档
查看>>
UIView
查看>>
添加日期选择控件
查看>>
bzoj4765: 普通计算姬 (分块 && BIT)
查看>>
看完漫画秒懂区块链
查看>>
Oracle命令类别
查看>>
stc12c5a60s2驱动TEA5767收音机模块硬件调试总结
查看>>