Back to project page android-music-player.
The source code is released under:
GNU General Public License
If you think the Android project android-music-player 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 pconley.vamp.player; //from w w w. j ava2 s . com /** * List of Intent data associated with events from the music player. * * @author pconley */ public class PlayerEvents { /** * Broadcast filter used by messages for this player's status receiver */ public static final String FILTER_PLAYER_EVENT = "pconley.vamp.player.event"; /** * Whether the player is now playing. If the player was stopped * unexpectedly, EXTRA_MESSAGE will contain an explanation. */ public static final String EXTRA_STATE = "pconley.vamp.player.event.state"; /** * Message giving a reason/explanation of the event. */ public static final String EXTRA_MESSAGE = "pconley.vamp.player.event.message"; private PlayerEvents() { } }