Hi I want to make Toast available to me no-matter-what and available from any thread whenever I like within my application. So to do this I extended the A
Toast
A
if you have the context with you, you can call the ui thread like this from non activity class.
((Activity)context).runOnUiThread(new Runnable() { public void run() { // things need to work on ui thread } });