Back to project page AudioChoice.
The source code is released under:
Apache License
If you think the Android project AudioChoice 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.hwrdprkns.audiochoice; /* w w w .ja v a 2 s.com*/ public interface IAudioPlayer { void start(); void pause(); void seekTo(int percent); int getCurrentPosition(); int getDuration(); boolean isPlaying(); void stop(); void release(); void reset(); }