Closed notHide closed 8 years ago
In BarView, onDraw() method:
canvas.drawRoundRect(mBound, mRadius, mRadius, mOuterPaint); canvas.drawRoundRect(mInBound, mRadius, mRadius, mInnerPaint);
This is not a regular rounded rectangle.
recommended change to this:
canvas.drawRoundRect(mBound, mBound.height()/2, mBound.height()/2, mOuterPaint); canvas.drawRoundRect(mInBound, mInBound.height()/2, mInBound.height()/2, mInnerPaint);
In BarView, onDraw() method:
This is not a regular rounded rectangle.
recommended change to this: