I have got multiple asyn Classes to run on background depending on the conditions each passes by..
Example: Not exactly the code, it's just a demo flow, if any doubt, let me know!!
new BB().execute();
{
//in background method
if(condition){
new CC().execute();
....
}
}
It enters inside the Class AA and depending on the condition, it enters into another async class and the process goes on till the condition gets over or false.
Now my question is, Is it possible to have Progress Bar with Percentage of data being fetched and the remaining time..