i tried to show the toast from thread.
Toast.makeText(activity.getApplicationContext(), "This is the Toast message", Toast.LENGTH_LONG).show();
but throws the exception
java.lang.RuntimeException:Can't create a handler inside thread that has not called Looper.prepare().
how do i solve this problem. i have put the Looper.myLooper().prepare(); before the Toast.makeText(....).show();
when i have done this it doesnt throw the exception. but doesnot show any toast message.
so how do i solve this problem.
thanks in advance.