List of usage examples for android.graphics Paint Paint
public Paint()
From source file:com.skytree.epubtest.BookViewActivity.java
public LineDrawable(int color, int strokeWidth) { mPaint = new Paint(); mPaint.setStrokeWidth(3); mColor = color; mStrokeWidth = strokeWidth; }