Hey Everybody, I have an AsyncTask that posts some data to a server. It does this by calling a static method that I wrote from doInBackground. When I run the AsyncTask,
you can Toast inside doInBackground
use this code
runOnUiThread(new Runnable() { public void run() { Toast.makeText(.this, "Cool Ha?", Toast.LENGTH_SHORT).show(); } });