├── .gitignore ├── AndroidManifest.xml ├── LICENSE ├── README.md ├── assets ├── adele.png ├── akon.jpg ├── daftpunk.jpg ├── graffiti.jpg └── greenday.jpg ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ ├── bg_song_info.xml │ ├── button_custom.xml │ ├── button_custom_default.xml │ ├── button_custom_disabled.xml │ ├── button_custom_focussed.xml │ ├── button_custom_pressed.xml │ ├── ic_launcher.png │ ├── spot_back.png │ ├── spot_bg.png │ ├── spot_forward.png │ ├── spot_pause.png │ ├── spot_play.png │ └── spot_tray_button.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── layout │ ├── service_player.xml │ ├── viewgroup_player_buttons.xml │ └── viewgroup_song_info.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── droidprojects └── spotifytray ├── MainActivity.java ├── PlayerService.java ├── Utils.java └── controller ├── MockPlaylist.java └── MockSong.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/README.md -------------------------------------------------------------------------------- /assets/adele.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/assets/adele.png -------------------------------------------------------------------------------- /assets/akon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/assets/akon.jpg -------------------------------------------------------------------------------- /assets/daftpunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/assets/daftpunk.jpg -------------------------------------------------------------------------------- /assets/graffiti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/assets/graffiti.jpg -------------------------------------------------------------------------------- /assets/greenday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/assets/greenday.jpg -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/bg_song_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-mdpi/bg_song_info.xml -------------------------------------------------------------------------------- /res/drawable-mdpi/button_custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-mdpi/button_custom.xml -------------------------------------------------------------------------------- /res/drawable-mdpi/button_custom_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-mdpi/button_custom_default.xml -------------------------------------------------------------------------------- /res/drawable-mdpi/button_custom_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-mdpi/button_custom_disabled.xml -------------------------------------------------------------------------------- /res/drawable-mdpi/button_custom_focussed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-mdpi/button_custom_focussed.xml -------------------------------------------------------------------------------- /res/drawable-mdpi/button_custom_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-mdpi/button_custom_pressed.xml -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spot_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-mdpi/spot_back.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spot_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-mdpi/spot_bg.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spot_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-mdpi/spot_forward.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spot_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-mdpi/spot_pause.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spot_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-mdpi/spot_play.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spot_tray_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-mdpi/spot_tray_button.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/service_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/layout/service_player.xml -------------------------------------------------------------------------------- /res/layout/viewgroup_player_buttons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/layout/viewgroup_player_buttons.xml -------------------------------------------------------------------------------- /res/layout/viewgroup_song_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/layout/viewgroup_song_info.xml -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/com/droidprojects/spotifytray/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/src/com/droidprojects/spotifytray/MainActivity.java -------------------------------------------------------------------------------- /src/com/droidprojects/spotifytray/PlayerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/src/com/droidprojects/spotifytray/PlayerService.java -------------------------------------------------------------------------------- /src/com/droidprojects/spotifytray/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/src/com/droidprojects/spotifytray/Utils.java -------------------------------------------------------------------------------- /src/com/droidprojects/spotifytray/controller/MockPlaylist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/src/com/droidprojects/spotifytray/controller/MockPlaylist.java -------------------------------------------------------------------------------- /src/com/droidprojects/spotifytray/controller/MockSong.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouady/SpotifyTray-Android/HEAD/src/com/droidprojects/spotifytray/controller/MockSong.java --------------------------------------------------------------------------------