A way to send wishes to main
Following is one of the multiple example that defines the way to communicate back to the UI main thread from a background thread.
private void yourBackgroundThreadMethod() { // Want to send something to your main method // Do the most simple thing Handler handler = new Handler(yourActivityContext.getMainLooper()); handler.post(new Runnable() { // Send your wishes }); }












