Back to project page PlayTunes.
The source code is released under:
Copyright (c) 2014, Impeccable Labs, LLC. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions ar...
If you think the Android project PlayTunes 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.ideabag.playtunes.util; // w ww. j a va 2 s.c o m public interface GAEvent { public static interface Categories { // Any music browsing ListFragment in PlayTunes String PLAYLIST = "playlist"; // editable playlists String USER_PLAYLIST = "user playlist"; // The starred playlist String STARRED_PLAYLIST = "starred playlist"; // Lock screen controls String LOCKSCREEN = "lockscreen"; // String FOOTER_CONTROLS = "footer_controls"; // Notification String NOTIFICATION = "notification button"; // Dialogs String DIALOG = "dialog"; } // // Defined constants for event actions // public interface Playlist { String ACTION_CLICK = "click"; String ACTION_LONGCLICK = "longclick"; String ACTION_SHOWLIST = "show"; } public interface Notification { String ACTION_CLOSE = "close"; } public interface AudioControls { String ACTION_PLAY = "play"; String ACTION_PAUSE = "pause"; String ACTION_NEXT = "next"; String ACTION_PREV = "prev"; // Not implemented String ACTION_STOP = "stop"; // Not implemented String ACTION_REW = "rew"; // Ni String ACTION_FFWD = "ffwd"; // Ni } public interface UserPlaylist { String ACTION_CREATE = "create"; String ACTION_DELETE = "delete"; String ACTION_RENAME = "rename"; String ACTION_ADD = "add"; String ACTION_REMOVE = "remove"; String ACTION_MOVE = "move"; String ACTION_ADDSTAR = "star_add"; String ACTION_REMOVESTAR = "star_remove"; String ACTION_MOVESTAR = "star_move"; } public interface FooterControls { String ACTION_NOW_PLAYING = "now_playing"; } }