Most visited

Recently visited

SearchOrbView.Colors

public static class SearchOrbView.Colors
extends Object

java.lang.Object
   ↳ android.support.v17.leanback.widget.SearchOrbView.Colors


A set of colors used to display the search orb.

Summary

Fields

public int brightColor

A brighter version of the search orb used for animation.

public int color

The main color of the search orb.

public int iconColor

A color used to tint the search orb icon.

Public constructors

SearchOrbView.Colors(int color)

Constructs a color set using the given color for the search orb.

SearchOrbView.Colors(int color, int brightColor)

Constructs a color set using the given colors for the search orb.

SearchOrbView.Colors(int color, int brightColor, int iconColor)

Constructs a color set using the given colors.

Public methods

static int getBrightColor(int color)

Computes a default brighter version of the given color.

Inherited methods

From class java.lang.Object

Fields

brightColor

int brightColor

A brighter version of the search orb used for animation.

color

int color

The main color of the search orb.

iconColor

int iconColor

A color used to tint the search orb icon.

Public constructors

SearchOrbView.Colors

SearchOrbView.Colors (int color)

Constructs a color set using the given color for the search orb. Other colors are provided by the framework.

Parameters
color int: The main search orb color.

SearchOrbView.Colors

SearchOrbView.Colors (int color, 
                int brightColor)

Constructs a color set using the given colors for the search orb. Other colors are provided by the framework.

Parameters
color int: The main search orb color.
brightColor int: A brighter version of the search orb used for animation.

SearchOrbView.Colors

SearchOrbView.Colors (int color, 
                int brightColor, 
                int iconColor)

Constructs a color set using the given colors.

Parameters
color int: The main search orb color.
brightColor int: A brighter version of the search orb used for animation.
iconColor int: A color used to tint the search orb icon.

Public methods

getBrightColor

int getBrightColor (int color)

Computes a default brighter version of the given color.

Parameters
color int
Returns
int

Hooray!