Searched defs:LinearGradient (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DLinearGradient.java19 public class LinearGradient extends Shader { class in inherits:Shader
25 * Type of the LinearGradient: can be either TYPE_COLORS_AND_POSITIONS or
52 public LinearGradient(float x0, float y0, float x1, float y1, int colors[], float positions[], method in class:LinearGradient
80 public LinearGradient(float x0, float y0, float x1, float y1, int color0, int color1, method in class:LinearGradient
98 final LinearGradient copy;
101 copy = new LinearGradient(mX0, mY0, mX1, mY1, mColors.clone(),
105 copy = new LinearGradient(mX0, mY0, mX1, mY1, mColor0, mColor1, mTileMode);
108 throw new IllegalArgumentException("LinearGradient should be created with either " +

Completed in 69 milliseconds