ArcProgressStackView icon indicating copy to clipboard operation
ArcProgressStackView copied to clipboard

Possible bug with app:apsv_model_offset="10dp"

Open Mutalistik opened this issue 8 years ago • 0 comments

When set app:apsv_model_offset="10dp" the circles get cut by the edges of the view, the solution is in the line 827 of the ArcProgressStackView.java

Change final float modelOffset = (mProgressModelSize * i) + (paintOffset + shadowOffset) - (mProgressModelOffset * i);

With final float modelOffset = (mProgressModelSize * i) + (paintOffset + shadowOffset) + (mProgressModelOffset * i);

if you put + (mProgressModelOffset * i); works perfectly

Hope this help Best Regards

Mutalistik avatar Aug 03 '17 16:08 Mutalistik