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
use below code. create activity object which contains your activity instance..
activity.runOnUiThread(new Runnable() { public void run() { Toast.makeText(activity.getApplicationContext(),"Toast text",Toast.LENGTH_SHORT).show(); } );