I have an issue here , if i invoke two AsyncTasks , the last one's doinbackground never gets called. I really need to invoke these two operations from my main activity threads.
Please shed some light on the issue..
Thanks
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
.
.
.
.
.
.
new ClientListener(this).execute();
new DatabaseReader(this).execute();
}