Added docs for Notify class

This commit is contained in:
Manoj Khanna 2015-03-20 19:19:35 +05:30
parent fa8d5657be
commit 850a374788
1 changed files with 10 additions and 0 deletions

View File

@ -147,10 +147,20 @@ public class Notify {
public interface Showable {
/**
* Shows the notification on the bottom of the Activity.
*/
public void show();
/**
* Shows the notification on the bottom of the Fragment.
*/
public void show(Fragment fragment);
/**
* Shows the notification on the given ViewGroup.
* The viewGroup should be either a RelativeLayout or FrameLayout.
*/
public void show(ViewGroup viewGroup);
}