danilodeveloper
danilodeveloper

Reputation: 3880

List of the Intents in Android music players

Is there anywhere with a list of the Intents different players send out metadata on a track change? Ex: Sense uses:

com.htc.music.metachanged

Looking for 3rd-party (non-bundled) players and the default player.

tks in advance!

Upvotes: 2

Views: 534

Answers (1)

Mojo Risin
Mojo Risin

Reputation: 8142

There is no 'list' with the intents of all music players. For the default you can check the documentation and for those that are open sourced you can check the code, but unfortunately in all other cases (3rd-party players) there is nothing you can do. You can write your own player and use whatever Intents you wish.

Upvotes: 1

Related Questions