Just 3 simple questions about AsyncTasks. If we declare this AsyncTask:
private class DownloadFilesTask extends AsyncTask<URL, Integer, Long>
1- What type of value is passed to doInBackground() method? Is it URL?
2- What type of value is passed to the callback that informs the task progress?
3- What type of value is passed to the callback that is executed when the task ends?
Thank you all. Rest of a good day