In one of my activities I\'m using AsyncTask. In doInBackground() I\'m making calls to various methods. In one of these methods I\'m getting an exc
AsyncTask
doInBackground()
activity.runOnUiThread(new Runnable() { public void run() { Toast.makeText(activity, "Toast teaxt", Toast.LENGTH_SHORT).show(); } });