-
Notifications
You must be signed in to change notification settings - Fork 765
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not playing next song #11
Comments
Check the play mode, there are four play mode available: single, loop, shuffle, list. Only the list mode will stop when the list is finished playing. |
I checked it already and on clicking next button it is not playing next song. |
yes, in any play mode, the playing song will start from the beginning if you click next or pre button |
in class Player, the method playNext() or playLast() will go to method play(), and in method play(), it get current song and play it ,not the last song or next. so the pre and next button will not response. |
Is there a way in which I can contribute to this code base specially this bug? |
@DroidPulkit You fork this project, fix this bug, launch a pull request. |
But it wasn't working for "All" playlist. So I fixed the bug by adding following code... At PlayList.java public static PlayList fromLocalPlaylist(String name, List songs, int numOfSongs, int playingIndex) {
AllLocalMusicFragment.java mAdapter.setOnItemClickListener(new OnItemClickListener() {
|
Player is not able to play next song automatically.User have to click next song to play it.Nice job.Thank you
The text was updated successfully, but these errors were encountered: