Back to project page SpotifyTray-Android.
The source code is released under:
MIT License
If you think the Android project SpotifyTray-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.droidprojects.spotifytray.controller; //from w ww. j a va 2 s . com /** * Mock Song metadata * @author Fouad * */ public class MockSong { public String mAlbumCoverPath; public int mSongDuration; public int mCurrentPlayheadPosition; public String mTitle; public String mSinger; public MockSong(String singer, String title, String path, int songDuration){ mTitle = title; mSinger = singer; mAlbumCoverPath = path; mSongDuration = songDuration; mCurrentPlayheadPosition = 0; } }