Android中获取颜色的几种方法

2018-12-20 00:09:02

Android中获取颜色的几种方法:

通过android封装好的Color类中的常量 

public static final int BLACK = 0xFF000000;

public static final int DKGRAY = 0xFF444444;

public static final int GRAY = 0xFF888888;

public static final int LTGRAY = 0xFFCCCCCC;

public static final int WHITE = 0xFFFFFFFF;

public static final int RED = 0xFFFF0000;

public static final int GREEN = 0xFF00FF00;

public static final int BLUE = 0xFF0000FF;

public static final int YELLOW = 0xFFFFFF00;

public static final int CYAN = 0xFF00FFFF;

public static final int MAGENTA = 0xFFFF00FF;

public static final int TRANSPARENT = 0;

直接使用0x开头的颜色值,后续八位分别是透明度,ff为不透明,R,G,B值 

例如:int color = 0xff00ff00;

这是最简单的使用方法

如果知道ARGB的取值,那么可以使用Color类的静态方法argb创建一个颜色: 

int color = Color.argb(127, 255, 0, 255); // 半透明的紫色

使用xml资源文件来表示颜色 

<?xml version="1.0" encoding="utf-8"?>``<resources> 

<color name="colorPrimary">#3F51B5</color> 

<color name="colorPrimaryDark">#303F9F</color> 

<color name="colorAccent">#FF4081</color> 

</resources>

定义了这个颜色之后,可以使用ResourceManager类中的getColor来获取该颜色

int color = getResources().getColor(R.color.mycolor);

getResources()方法返回当前活动Activity的ResourceManager类实例。


  • 2017-02-13 17:50:05

    cURL error 60: SSL certificate problem: unable to get local issuer certificate

    Drupal 8 version uses Guzzle Http Client internally, but under the hood it may use cURL or PHP internals. If you installed PHP cURL on your PHP server it typically uses cURL and you may see an exception with error Peer certificate cannot be authenticated with known CA certificates or error code CURLE_SSL_CACERT (60).

  • 2017-02-16 08:09:01

    HTML中PRE和p的区别

    pre 元素可定义预格式化的文本。被包围在 pre 元素中的文本通常会保留空格和换行符。而文本也会呈现为等宽字体。 <pre> 标签的一个常见应用就是用来表示计算机的源代码。

  • 2017-02-16 15:14:14

    动态加载js和css

    开发过程中经常需要动态加载js和css,今天特意总结了一下常用的方法。