Here you can find the source of getAlpha(int color)
public static int getAlpha(int color)
//package com.java2s; public class Main { public static int getAlpha(int color) { return ((0xff000000 & color) >> 24); }//w w w . j a v a 2 s. c o m }