Back to project page MusicPlayer.
The source code is released under:
MIT License
If you think the Android project MusicPlayer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.dsvoronin.musicplayer; //from www. ja v a 2s .c o m /** * Player ready to work. All tracks loaded. Ready for input * --------------- * Created by dsvoronin on 25/02/14. */ class ReadyState extends PlayerState { protected ReadyState(MusicPlayerService service) { super(service); } @Override void onActivated() { } @Override void onDeactivated() { } @Override void play(int id) { service.play(id); } @Override void pause() { } }