项目简介
PolygonDrawingUtil
一个高效的Android工具类,用于在canvas上绘制规则多边形。
用户可以指定:
Demo入门
在build.gradle文件中指定PolygonDrawingUtil作为依赖:
dependencies { compile 'com.stkent:polygondrawingutil:1.0.0' }创建一个新的PolygonDrawingUtil实例然后将它分配给自定义视图类中的字段:
private PolygonDrawingUtil polygonDrawingUtil = new PolygonDrawingUtil();在onDraw方法中调用 polygonDrawUtil.drawPolygon:
@Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); polygonDrawingUtil.drawPolygon( canvas, numberOfSides, centerX, centerY, polygonRadius, cornerRadius, rotation, polygonPaint); }项目首页 添加收藏