Home | History | Annotate | Download | only in xy

Lines Matching defs:Paint

20 import android.graphics.Paint;

29 private Paint paint = new Paint();
32 paint.setStyle(Paint.Style.FILL);
33 paint.setAntiAlias(true);
51 //paint = new Paint();
52 paint.setColor(color);
53 //paint.setStyle(Paint.Style.FILL);
54 //paint.setAntiAlias(true);
59 return paint.getColor();
63 paint.setColor(color);
67 * Advanced users can use this method to access the Paint instance to add transparency etc.
70 public Paint getPaint() {
71 return paint;