Added landscape version for now playing screen

This commit is contained in:
Karim Abou Zeid 2015-12-23 22:51:28 +01:00
commit 4dc8178012
6 changed files with 400 additions and 178 deletions

View file

@ -64,4 +64,13 @@ public class Playlist implements Parcelable {
this.name = in.readString();
}
public static final Creator<Playlist> CREATOR = new Creator<Playlist>() {
public Playlist createFromParcel(Parcel source) {
return new Playlist(source);
}
public Playlist[] newArray(int size) {
return new Playlist[size];
}
};
}