Open BharathKSunil opened 4 years ago
protected void dispatchDraw(Canvas canvas) { ... if (mIsRunning) { invalidate(); } }
with
override fun dispatchDraw(canvas: Canvas) { ... if (isRunning) { ViewCompat.postInvalidateOnAnimation(this) } }
Changes:
with