Android Open Source - android-music-player Player Events






From Project

Back to project page android-music-player.

License

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.

Java Source Code

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() {
  }

}




Java Source Code List

pconley.vamp.CurrentTrackActivity.java
pconley.vamp.LibraryActivity.java
pconley.vamp.TrackViewActivity.java
pconley.vamp.db.LibraryContract.java
pconley.vamp.db.LibraryHelper.java
pconley.vamp.db.TrackDAO.java
pconley.vamp.model.Tag.java
pconley.vamp.model.Track.java
pconley.vamp.player.AudioNoisyReceiver.java
pconley.vamp.player.PlayerEvents.java
pconley.vamp.player.PlayerService.java