获取Color的几种方式

Posted xfdmyghdx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取Color的几种方式相关的知识,希望对你有一定的参考价值。

 

#11223344 格式,11位表示透明度,为0时完全透明,为255时完全不透明,后三个分量依次表示R,G,B颜色参数。

//获取颜色字符串  得到 #ffffff格式字符串 
// colorTest 为 #FF0000

String c0=this.getResources().getString((int)R.color.colorTest);

//获取颜色数值,为8位数表示

int c1 = this.getResources().getColor(R.color.colorTest);

int c2 = Color.parseColor("#FF0000");

int c3 = 0xFF0000;

int c4 = 0xFFFF0000;

int c5= Color.argb(255,255,0,0);

Log.d("fff","Color 0 === "+c0);
Log.d("fff","Color 1 === "+c1);
Log.d("fff","Color 2 === "+c2);
Log.d("fff","Color 3 === "+c3);
Log.d("fff","Color 4 === "+c4);
Log.d("fff","Color 5 === "+c5);

 

打印LOG:

02-02 13:08:58.672 15085-15085/com.code.tx1n.tochat D/fff: Color 0 === #ffff0000
02-02 13:08:58.672 15085-15085/com.code.tx1n.tochat D/fff: Color 1 === -65536
02-02 13:08:58.672 15085-15085/com.code.tx1n.tochat D/fff: Color 2 === -65536
02-02 13:08:58.672 15085-15085/com.code.tx1n.tochat D/fff: Color 3 === 16711680
02-02 13:08:58.672 15085-15085/com.code.tx1n.tochat D/fff: Color 4 === -65536
02-02 13:08:58.672 15085-15085/com.code.tx1n.tochat D/fff: Color 5 === -65536

 




























以上是关于获取Color的几种方式的主要内容,如果未能解决你的问题,请参考以下文章

一张图,理顺 Spring Boot应用在启动阶段执行代码的几种方式

一张图,理顺 Spring Boot应用在启动阶段执行代码的几种方式

一张图帮你记忆,Spring Boot 应用在启动阶段执行代码的几种方式

JAVASCRIPT实现继承的几种方式

java解析xml的几种方式哪种最好?

Spring在代码中获取bean的几种方式(转)