I am building a android application and in my first activity I call to a web service in AsyncTask (Virgil Dobjanschi design pattern).
But the line after the call i am moving to another activity like this:
ServiceHelper.CalcPoints(1,2);
Intent toSecond = new Intent(getApplicationContext(), SecondActivity.class);
startActivity(toSecond);
I don't wait for a callback from the server.
I want to know if I have risks in using that way ? and what them ? If you recommend me not using that please give me other options.
Thank you !