标签: android soundcloud
如何实现共享音轨链接的soundcloud分享按钮,当用户点击它时,使用soundcloud应用程序打开此曲目。
我搜索了但我没有找到任何共享audio或image或text或application的内容,所以任何帮助我怎么能那样做。
提前致谢。
答案 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);