mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 18:03:33 +00:00
Graphic changes to the playlist page
This commit is contained in:
parent
b1e2cbe68f
commit
42731aef75
5 changed files with 194 additions and 135 deletions
|
|
@ -4,12 +4,12 @@ import android.os.Parcel;
|
|||
import android.os.Parcelable;
|
||||
|
||||
public class Playlist implements Parcelable {
|
||||
public String id;
|
||||
public String name;
|
||||
public String primary;
|
||||
public String blurHash;
|
||||
public int songCount;
|
||||
public int duration;
|
||||
private String id;
|
||||
private String name;
|
||||
private String primary;
|
||||
private String blurHash;
|
||||
private int songCount;
|
||||
private long duration;
|
||||
|
||||
public Playlist(com.cappielloantonio.play.subsonic.models.Playlist playlist) {
|
||||
this.id = playlist.getId();
|
||||
|
|
@ -40,7 +40,7 @@ public class Playlist implements Parcelable {
|
|||
return songCount;
|
||||
}
|
||||
|
||||
public int getDuration() {
|
||||
public long getDuration() {
|
||||
return duration;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue