Top "Android-asynctask" questions

Use for questions on android.

What is the use of List<NameValuePair> or ArrayList<NameValuePair>

I want to know about What is the use of List<NameValuePair> or ArrayList<NameValuePair> in …

android android-asynctask
AsyncTask and error handling on Android

I'm converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates …

android error-handling handler android-asynctask
getting context in AsyncTask

I am trying to get the context in my AsyncTask of the class called Opciones(this class is the only …

android android-asynctask toast android-context
Android SDK AsyncTask doInBackground not running (subclass)

As of 15/2/2012 I have yet to find a good explanation to nor a reason why this does not work. The …

android multithreading android-emulator android-asynctask
AsyncTask won't stop even when the activity has destroyed

I have an AsyncTask object which starts executing when the activity is created and does stuff in the background (downloads …

android android-asynctask
How to run an async task for every x mins in android?

how to run the async task at specific time? (I want to run it every 2 mins) I tried using post …

android android-asynctask
How to completely kill/remove/delete/stop an AsyncTask

I made an app that downloads videos from our server. The issue is: When i cancel the downloading i call: …

android android-asynctask
Android threading and database locking

We are using AsyncTasks to access database tables and cursors. Unfortunately we are seeing occasional exceptions regarding the database being …

android sqlite locking thread-safety android-asynctask
Android Fragments. Retaining an AsyncTask during screen rotation or configuration change

I'm working on a Smartphone / Tablet app, using only one APK, and loading resources as is needed depending on screen …

android android-fragments progressdialog android-asynctask android-support-library
AsyncTask return value

My android app connects to my website to retrieve and upload information so I use an AsyncTask thread. In one …

android return-value android-asynctask