Is there any way to programatically open the Android Music Player?
I'm sure there is some kind of Intent somewhere but I cannot find it.
James
android.intent.action.MUSIC_PLAYER
is your friend. See MediaStore on Android Docs for further information.
Create a new intent:
Intent intent = new Intent("android.intent.action.MUSIC_PLAYER");
startActivity(intent);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With