I am working on my school Project of Music Player. I am able to fetch the songs list from External drive and able to display the same in listView
under Fragment
. When I click on the song, it plays and snackbar
is opened.
I want this Snackbar
to display 'gif image' with animation.I have tried several online code but could not get to any solution
Below is my code:
Snackbar snackbar = Snackbar.make(relativeLayout, nameOfSong , Snackbar.LENGTH_INDEFINITE);
View snackbarLayout = snackbar.getView();
TextView textView = (TextView)snackbarLayout.findViewById(android.support.design.R.id.snackbar_text);
textView.setCompoundDrawablesWithIntrinsicBounds(R.drawable.musicbars, 0, 0, 0);
textView.setCompoundDrawablePadding(getResources().getDimensionPixelOffset(R.dimen.my_value));
snackbar.show();
I want to add Gif of Music Bars which should keep on animating till the song lasts.
Thanks