One of the simplest alternative is to use Thread
new Thread(new Runnable({
public void run(){
// do your stuff
runOnUIThread(new Runnable({
public void run(){
// do onPostExecute stuff
}
})
})).start();
If your project supports JAVA 8, you can use lambda
new Thread(() -> {
// do background stuff here
…
Top comments (0)