have the position seekbar show that it's buffering/loading/seeking

This commit is contained in:
Domingos Lopes 2016-04-17 13:17:30 -04:00
parent bd6e494c51
commit 280efd56d7

View File

@ -189,12 +189,14 @@ public abstract class MediaplayerInfoActivity extends MediaplayerActivity implem
|| resId == R.string.player_seeking_msg
|| resId == R.string.player_buffering_msg) {
// TODO Show progress bar here
sbPosition.setIndeterminate(true);
}
}
@Override
protected void clearStatusMsg() {
// TODO Hide progress bar here
sbPosition.setIndeterminate(false);
}