Context sensual toasts for android.
SuperToast is a utility class that can be used by Android Developers who needs to show the toasts wrapped within the actual context.
A SuperToast will be displayed at the top postiion of an application window.
The API is kept as simple as the Toast API.
Create a instance:
SuperToast mSuperToast=new SuperToast(Context);
Show the Info Toast:
mSuperToast.showShortInfoToast("Info Toast");
Show the Error Toast:
mSuperToast.showShortErrorToast("Error toast");
Hide the Toast:
mSuperToast.hideToast();
Make sure to call hideToast() in onPause() to cancel all the action remaining toasts.

