Is there a way to execute Android's default mediaplayer to select a music track and get back to my app by pressing back the back button? (Endomondo does this by the way)
I searched the forum and could find the mediaplayer example but that's for a single track play, invoking the default player would provide me track advance/pause/restart/file selector etc without the need to code all that in my app.
I know I can quit my app via the home button and go to applications > mediaplayer but a simple button that shortcut's this would be neat.
Dim i As Intent
i.Initialize ("", "")
i.SetComponent("com.google.android.music/com.android.music.activitymanagement.TopLevelActivity")
StartActivity(i)