Created
August 21, 2017 22:09
-
-
Save nazmulidris/f3226cb9b92e13e9fb09b8f54578fb21 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public interface PlayerAdapter { | |
| void loadMedia(int resourceId); | |
| void release(); | |
| boolean isPlaying(); | |
| void play(); | |
| void reset(); | |
| void pause(); | |
| void initializeProgressCallback(); | |
| void seekTo(int position); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment