private PointF mPointF1;
private PointF mControl;
private PointF touchPoint;
private float startAngle = 180;
private float sweepAngle = 60;
private float radius = 100;
private float LEFT = 100;
private float TOP = LEFT + radius;
private float RIGHT = 300;
private float BOTTOM = 400;
private RectF mRectF;
private void init() {
mPaint = new Paint();
mPaint.setAntiAlias(true);
mPaint.setStyle(Paint.Style.FILL);
mPaint.setColor(Color.BLACK);
mPath = new Path();
mPointF1 = new PointF(LEFT, RIGHT);
touchPoint = new PointF(0,0);
mControl = new PointF(0,0);
mRectF = new RectF(LEFT,TOP,RIGHT,BOTTOM);
private PointF mControl;
private PointF touchPoint;
private float startAngle = 180;
private float sweepAngle = 60;
private float radius = 100;
private float LEFT = 100;
private float TOP = LEFT + radius;
private float RIGHT = 300;
private float BOTTOM = 400;
private RectF mRectF;
private void init() {
mPaint = new Paint();
mPaint.setAntiAlias(true);
mPaint.setStyle(Paint.Style.FILL);
mPaint.setColor(Color.BLACK);
mPath = new Path();
mPointF1 = new PointF(LEFT, RIGHT);
touchPoint = new PointF(0,0);
mControl = new PointF(0,0);
mRectF = new RectF(LEFT,TOP,RIGHT,BOTTOM);