我已经在网上搜索过了,但没有找到任何结果。我如何让Deezer应用程序在Android上使用intent播放特定的歌曲?(我也想和Deezer一起做this )。
发布于 2012-10-08 20:34:17
只需在"http://www.deezer.com/track/{id}"“上启动一个ACTION_VIEW。
String uri = "http://www.deezer.com/track/" + trackId;
Intent intent = new Intent(Intent.ACTION_VIEW, uri);https://stackoverflow.com/questions/12602811
复制相似问题