Replaced Serializable with Parcelable everywhere
This commit is contained in:
parent
c5b5460e01
commit
5bdd763248
21 changed files with 413 additions and 175 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue