15

Android AsyncTask is Deprecated: Here’s another way

 3 years ago
source link: https://www.simplifiedcoding.net/android-asynctask/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Android AsyncTask is Deprecated: Here’s another way

If you are into android development then I am pretty sure that you know about Android AsyncTask. The AsyncTask class helped us in executing some code in the background thread.

With the help of AsyncTask we can execute something on the background thread and get the result back in the UI thread. If you want to learn about AsyncTask then you can check this Android MySQL Tutorial, where I used AsyncTask.

But Android AsyncTask is deprecated in API Level 30.

So what are the alternative now? That is what I will tell you in this post.

Why Android AsyncTask is Deprecated?

Here is the official reason it is deprecated.

AsyncTask was intended to enable proper and easy use of the UI thread. However, the most common use case was for integrating into UI, and that would cause Context leaks, missed callbacks, or crashes on configuration changes. It also has inconsistent behavior on different versions of the platform, swallows exceptions from doInBackground, and does not provide much utility over using Executors directly.

Alternative of AsyncTask

The officially recommended alternative is Kotlin Coroutines, that you must use of writing Asynchronous Code in your project.

You can check this complete Kotlin Coroutines Tutorial that I have already published.

But if you are a beginner and you just started learning android development then jumping directly into Kotlin Coroutine is not recommended. So in this post I will show you something that do not requires any dependency.

Using Executors

We have java.util.concurrent.Executors class; that we can use in place of AsyncTask if you do not wish to use Kotlin Coroutines.

Here is an example how you can use it.

        val executor = Executors.newSingleThreadExecutor()
        val handler = Handler(Looper.getMainLooper())
        executor.execute {
            * Your task will be executed here
            * you can execute anything here that
            * you cannot execute in UI thread
            * for example a network operation
            * This is a background thread and you cannot
            * access view elements here
            * its like doInBackground()
            handler.post {
                * You can perform any operation that
                * requires UI Thread here.
                * its like onPostExecute()

It is pretty much the same thing that you do using AsyncTask .

But still it is recommended that you use Kotlin Coroutines for writing asynchronous codes in your project.

So that’s it for the alternative of Android AsyncTask. If you have some inputs from your side please comment it below. And yes don’t hesitate in asking if you have any confusion or problelm. Thank You

Hi, my name is Belal Khan and I am a Google Developers Expert (GDE) for Android. The passion of teaching made me create this blog. If you are an Android Developer, or you are learning about Android Development, then I can help you a lot with Simplified Coding.

Checkout these tutorials as well:

  • Android Custom Dialog Example - Making Custom AlertDialog
  • Android Room Database Example - Building a Todo App
  • JSON Parsing in Android – Fetching From MySQL Database
  • Android Dependency Injection : What it is and How to do it?
  • Turn on Flashlight Android - Building a Torch App
  • Dagger 2 Android Example using Retrofit : Injecting Dependency

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK