Added Android code
[wl-app.git] / Android / app / src / main / java / com / moiseum / wolnelektury / view / player / PlayerView.java
1 package com.moiseum.wolnelektury.view.player;
2
3 /**
4  * Created by Piotr Ostrowski on 22.05.2018.
5  */
6 interface PlayerView {
7
8         void setTrackDuration(int trackDuration, String totalProgress);
9
10         void setTrackPosition(int position, String currentProgress);
11
12         void setTrackTexts(String title, int chapter);
13
14         void setPlayButtonState(boolean playing);
15
16         void onPlayerError();
17 }