언어별/안드로이드
안드로이드 점선 긋기
지에고
2010. 9. 10. 18:35
안드로이드 맵 에 점선으로 나타낼 필요가 있어서 찾아봤더니 있군아 ㅠ 괜히 삽질 ㅋ
DashPathEffect dashPath = new DashPathEffect(new float[]{5,5}, 2);
paint.setStyle( Paint.Style.STROKE );
paint.setPathEffect(dashPath);
paint.setStrokeWidth(3);
paint.setColor(Color.BLUE);
DashPathEffect dashPath = new DashPathEffect(new float[]{5,5}, 2);
paint.setStyle( Paint.Style.STROKE );
paint.setPathEffect(dashPath);
paint.setStrokeWidth(3);
paint.setColor(Color.BLUE);