I recently came to know about the support design library for android with build version 22.2.0. In that I am very much impressed with most of the custom views which is easy to use. But whereas Customization of those as concern I am completely stuck up with the solutions. In that one of the major portion I am completely struggling is SnackBar.
I am using following code to display SnackBar in my Activity:
Snackbar.make (view,"Success",Snackbar.LENGTH_SHORT).show ();
Gradle Build library:
compile 'com.android.support:design:22.2.0'
Everything works awesome but what i need is to show snackbar from top to bottom instead of default bottom to top property. Please anyone kindly help with your solutions. Thanks in advance