Created
September 19, 2022 13:33
-
-
Save anta40/1059a1b7cc50c0265a4817c1611d64cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.content.AsyncTaskLoader; | |
import android.content.Context; | |
import android.util.Log; | |
public class BigDataLoader extends AsyncTaskLoader<BigData> { | |
public BigDataLoader(Context context) { | |
super(context); | |
Log.d("test", "...BigDataLoader."); | |
} | |
@Override | |
public BigData loadInBackground() { | |
Log.d("test", "...loadInBackground."); | |
BigData data = new BigData(); | |
data.load(); | |
return data; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment