I\'m just learning about AsyncTask and want to use it as a separate class, rather then a subclass.
For example,
class inetloader extends AsyncTask&l
inetloader il = new inetloader(); il.execute("http://www.google.com"); String result = il.get();//put it in try-catch ^^^^^^^^
here you get result which is in onPostExecute(String result)