Top "Android-asynctask" questions

Use for questions on android.

I want to use a progress bar with RxJava like you can with AsyncTask

I want to replace my AsyncTask with RxJava in android. My current AsyncTask goes like this: public class ProgressBarAsyncTask extends …

android android-asynctask rx-java progressdialog
Why does android logcat not show the stack trace for a runtime exception?

An android application that I am currently developing was crashing (fixed that), due to what should have raised an IndexOutOfBoundsException. …

java android android-asynctask logcat runtimeexception
AsyncTask as kotlin coroutine

Typical use for AsyncTask: I want to run a task in another thread and after that task is done, I …

android multithreading kotlin android-asynctask kotlin-coroutines
Android UI Thread Message Queue dispatch order

While working with retain Fragments in Android to hold an AsyncTask during configuration changes, which i guess it's the best …

android android-asynctask
How can I implement a Timer/TimerTask that executes an AsyncTask? (Android)

I'm trying to perform a task (ie. load data from a text file) asynchronously and repeatedly at specified times (ie. …

android multithreading timer android-asynctask timertask
Synchronous service calls in Android

I'm working on application whose main responsibility is to contact remote server and display the data provided. Service is Soap …

android web-services soap android-asynctask sequential
Android equivalent of getActivity() from/in ActionBarActivity

Like my title says, i'm looking for an equivalent of getActivity() in my ActionBarActivity class in my Android project. I …

android android-activity android-asynctask android-actionbaractivity
RecyclerView and async Loading

I have a slight problem. Need a nudge in the right direction. I am doing a video editor like Vine …

android android-asynctask android-bitmap
What is the difference between loader or AsyncTask?

I want to know the difference between Android loader and AsyncTask , here the demo on Loader: package com.android.loaderdemo; …

android android-asynctask loader
Need help creating Digest authentication for Android

I have this code so far: private class DownloadWebPageTask extends AsyncTask<String, Void, String> { @Override protected String doInBackground(…

android android-asynctask digest-authentication