2012-09-26 55 views
3

我已經在網上搜索,但沒有找到任何結果。我如何使Deezer應用程序使用Android的意圖播放特定的歌曲? (我想和Deezer一起做this)。Deezer意圖 - Android

回答

3

只需在「http://www.deezer.com/track/{id}」上啓動ACTION_VIEW意圖「。

String uri = "http://www.deezer.com/track/" + trackId; 
Intent intent = new Intent(Intent.ACTION_VIEW, uri);