Color 构造函数

定义

重载

Color(Int32)

初始化 Color 结构的新实例。

Color(Byte, Byte, Byte)

初始化 Color 结构的新实例。

Color(Int32, Int32, Int32)

初始化 Color 结构的新实例。

Color(Byte, Byte, Byte, Byte)

初始化 Color 结构的新实例。

Color(Int32, Int32, Int32, Int32)

初始化 Color 结构的新实例。

Color(Int32)

初始化 Color 结构的新实例。

public Color (int argb);
new Android.Graphics.Color : int -> Android.Graphics.Color

参数

argb
Int32

颜色(ARGB)的整数表示形式。

注解

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于

Color(Byte, Byte, Byte)

初始化 Color 结构的新实例。

public Color (byte r, byte g, byte b);
new Android.Graphics.Color : byte * byte * byte -> Android.Graphics.Color

参数

r
Byte

红色组件。

g
Byte

绿色组件。

b
Byte

蓝色组件。

注解

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于

Color(Int32, Int32, Int32)

初始化 Color 结构的新实例。

public Color (int r, int g, int b);
new Android.Graphics.Color : int * int * int -> Android.Graphics.Color

参数

r
Int32

红色组件。 (0-255)

g
Int32

绿色组件。 (0-255)

b
Int32

蓝色组件。 (0-255)

注解

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于

Color(Byte, Byte, Byte, Byte)

初始化 Color 结构的新实例。

public Color (byte r, byte g, byte b, byte a);
new Android.Graphics.Color : byte * byte * byte * byte -> Android.Graphics.Color

参数

r
Byte

红色组件。

g
Byte

绿色组件。

b
Byte

蓝色组件。

a
Byte

Alpha 组件。

注解

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于

Color(Int32, Int32, Int32, Int32)

初始化 Color 结构的新实例。

public Color (int r, int g, int b, int a);
new Android.Graphics.Color : int * int * int * int -> Android.Graphics.Color

参数

r
Int32

红色组件。 (0-255)

g
Int32

绿色组件。 (0-255)

b
Int32

蓝色组件。 (0-255)

a
Int32

Alpha 组件。 (0-255)

注解

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于