In this Activity, you can :
Read below to learn more.
RoboAsyncTask is a class proposed by RoboGuice to solve some problems of AsyncTasks. They offer :
This Activity uses a simple RoboAsyncTask.
RoboAsyncTask do hold a hard reference on the Activity. From there, you can understand easily that RoboAsyncTasks don't solve the memory leak issue related to AsyncTasks. Any RoboAsyncTask will prevent its Activity from being garbage collected. Even if RoboAsyncTasks used a WeakReference on the Activity, all Activties using them would have to hold a WeakReference on RoboAsyncTasks and that would lead to the same bloated code as with our best implementation of AsyncTask.