Example #1
0
 /// <summary>
 /// Called from the drawable's draw() method after the canvas has been set
 /// to draw the shape at (0,0).
 /// </summary>
 /// <remarks>
 /// Called from the drawable's draw() method after the canvas has been set
 /// to draw the shape at (0,0). Subclasses can override for special effects
 /// such as multiple layers, stroking, etc.
 /// </remarks>
 protected internal virtual void onDraw(android.graphics.drawable.shapes.Shape shape
                                        , android.graphics.Canvas canvas, android.graphics.Paint paint)
 {
     shape.draw(canvas, paint);
 }