Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在网上搜索过,但没有找到任何结果。如何让 Deezer 应用程序使用 Android 上的意图播放特定歌曲?(我也想和 Deezer一起做这个)。
只需在“http://www.deezer.com/track/{id}”上启动 ACTION_VIEW 意图。
String uri = "http://www.deezer.com/track/" + trackId; Intent intent = new Intent(Intent.ACTION_VIEW, uri);