Hi, thank u for amazing rings!
i need to setData (animate) after a delay;
so use :
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
//.......some code
mRingProgress.setData(mlistRing, 1500);
}
}, 5000);
but after animate ringProgress the edge of ring on left and top and right and bottom is cut out !

if i setData without delay, everything works well !
also used :
- runOnUiThread
- .invalidate()
- .postInvalidate()
but not worked!
how can i solve this?!
Thanks in advance
Hi, thank u for amazing rings!

i need to setData (animate) after a delay;
so use :
new Handler().postDelayed(new Runnable() {@Overridepublic void run() {//.......some codemRingProgress.setData(mlistRing, 1500);}}, 5000);but after animate ringProgress the edge of ring on left and top and right and bottom is cut out !
if i setData without delay, everything works well !
also used :
but not worked!
how can i solve this?!
Thanks in advance