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; /* ww w .j a v a2s . com*/ /** * Player currently preparing track. No interruptions except destroying service accepted * --------------- * Created by dsvoronin on 26/02/14. */ class PrepareState extends PlayerState { protected PrepareState(MusicPlayerService service) { super(service); } @Override void onActivated() { } @Override void onDeactivated() { } @Override void play(int id) { } @Override void pause() { } }