flyingdutchman Posted July 11, 2014 Share Posted July 11, 2014 post removed as largely irrelevant now Link to comment Share on other sites More sharing options...
flyingdutchman Posted July 30, 2014 Author Share Posted July 30, 2014 Andrewilley, any thoughts on this? Or even max? Link to comment Share on other sites More sharing options...
andrewilley Posted July 31, 2014 Share Posted July 31, 2014 That'd be max, not me I'm afraid. Andre Link to comment Share on other sites More sharing options...
flyingdutchman Posted July 21, 2016 Author Share Posted July 21, 2016 I finally managed to get a Poweramp Playlist to be launched from within another app (New Playlist Manager). For those interested: public void playSelectedPlaylist(String playlist_id){ Intent intent = new Intent(PowerampAPI.ACTION_API_COMMAND); intent.putExtra(PowerampAPI.COMMAND, PowerampAPI.Commands.OPEN_TO_PLAY) .setData(PowerampAPI.ROOT_URI.buildUpon() .appendEncodedPath("playlists") .appendEncodedPath(playlist_id) .appendEncodedPath("files") .build()); Intent explicit_intent = new Intent(createExplicitFromImplicitIntent(getActivity(), intent)); getActivity().startService(explicit_intent); } The Poweramp library needs to be included. ps. I have not shown the createExplicitFromImplicitIntent method but contact me if you want this. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.