Home | History | Annotate | Download | only in ui

Lines Matching defs:color

23 import android.graphics.Color;
33 /** This transition fades in/out of the background of the view by changing the background color. */
58 int color = ((ColorDrawable) background).getColor();
60 Color.argb(0, Color.red(color), Color.green(color), Color.blue(color));
62 ? ObjectAnimator.ofArgb(background, "color", transparentColor)
63 : ObjectAnimator.ofArgb(background, "color", transparentColor, color);