Home | History | Annotate | Download | only in animation

Lines Matching refs:shape

22 import android.graphics.drawable.shapes.Shape;
26 * A data structure that holds a Shape and various properties that can be used to define
27 * how the shape is drawn.
31 private ShapeDrawable shape;
57 shape = value;
60 return shape;
66 shape.getPaint().setColor(value);
78 shape.setAlpha((int)((alpha * 255f) + .5f));
82 return shape.getShape().getWidth();
85 Shape s = shape.getShape();
90 return shape.getShape().getHeight();
93 Shape s = shape.getShape();
98 shape = s;