Posts by Renan Ferreira • 156 points
2 posts
-
2
votes1
answer587
viewsA: Two Asynctask running parallel with Httpclient request
According to the Android documentation public final Asynctask execute (Params... params) Note: this Function Schedules the task on a Queue for a single background thread or pool of threads Depending…
-
2
votes4
answers3330
viewsA: How to use Asynctask on Android?
Looking quickly at your code, I realized that you initialize all the AsyncTasks in a Thread separate. AsyncTasks are routines that facilitate the use of Threads on Android. They execute a code in…