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; // w w w . j a v a2 s.c o m /** * Player just initialized. No tracks available yet * ------------------- * Created by dsvoronin on 25/02/14. */ class InitState extends PlayerState { protected InitState(MusicPlayerService service) { super(service); } @Override void onActivated() { } @Override void onDeactivated() { } @Override void play(int trackId) { service.setPendingTrackId(trackId); } @Override void pause() { } }