如何实现soundcloud分享按钮

时间:2018-04-23 12:42:26

标签: android soundcloud

如何实现共享音轨链接的soundcloud分享按钮,当用户点击它时,使用soundcloud应用程序打开此曲目。

我搜索了但我没有找到任何共享audioimagetextapplication的内容,所以任何帮助我怎么能那样做。

提前致谢。

1 个答案:

答案 0 :(得分:0)

有关从Soundcloud应用添加声音的信息,请参阅this

请参阅this访问Soundcloud以在Soundcloud中播放歌曲

来自enadun的此代码可能有所帮助:

String id = "114143409"; //Track id
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("soundcloud://sounds:" + id));
startActivity(intent);