getArgb static method

int getArgb(
  1. double a,
  2. int r,
  3. int g,
  4. int b,
)

Implementation

static int getArgb(double a, int r, int g, int b) {
  return Color.fromRGBO(r, g, b, a).value;
}