Replaced Serializable with Parcelable everywhere

This commit is contained in:
Karim Abou Zeid 2015-12-23 17:30:29 +01:00
commit 5bdd763248
21 changed files with 413 additions and 175 deletions

View file

@ -144,7 +144,7 @@ public class PlaylistDetailActivity extends AbsSlidingMusicPanelActivity impleme
private void getIntentExtras() {
Bundle intentExtras = getIntent().getExtras();
try {
playlist = (Playlist) intentExtras.getSerializable(EXTRA_PLAYLIST);
playlist = (Playlist) intentExtras.getParcelable(EXTRA_PLAYLIST);
} catch (ClassCastException ignored) {
}
if (playlist == null) {