i have 2 AsyncTask
, AsyncOne
and AsyncTwo
.
In First AsyncTask background method i am getting a string value and setting that in onpostexecute
.,
like this item = i.getname();
here item
is a global variable.
Now i am setting this item value is onpostexecute
method of AsyncTwo but i get null there ?
How to get the item value?