setHighLightColor method

void setHighLightColor(
  1. Color color
)

Sets the color that is used for drawing the highlight indicators. Dont forget to resolve the color using getResources().getColor(...) or Color.rgb(...).

@param color

Implementation

void setHighLightColor(Color color) {
  _highLightColor = color;
}