The LibraryFragments are now loading their content async.

This commit is contained in:
Karim Abou Zeid 2016-03-20 21:11:21 +01:00
commit 4e6df0faf8
15 changed files with 367 additions and 54 deletions

View file

@ -355,7 +355,8 @@ public class MultiPlayer implements Playback, MediaPlayer.OnErrorListener, Media
// SystemClock.sleep(25);
mNextPlayer.start();
}
mCompletion.onCompletion(this);
if (mCompletion != null)
mCompletion.onCompletion(this);
}
}
}