-
Notifications
You must be signed in to change notification settings - Fork 58
Open
Description
private int getPercent(){
perc = 0;
scratchView.setEraseStatusListener(new ScratchView.EraseStatusListener() {
@Override
public void onProgress(int percent) {
perc = percent;
}
@Override
public void onCompleted(View view) {
}
});
return perc;
}
scratchView onProgress doesn't return the percent always returns 0
can you help me solve this