2014년 6월 30일 월요일

Android Path Effect (Dash)


DashPathEffect

        Paint paint = new Paint();
        paint.setColor(Color.RED);
        paint.setStyle(Style.STROKE);
        paint.setStrokeWidth(3.0F);
        paint.setPathEffect(new DashPathEffect(new float[] { 10, 10 }, 0 ));

댓글 없음:

댓글 쓰기