我有一个链接到Soundcloud轨道的移动应用程序。在Android上,点击这些链接会弹出一个对话框,要求用户使用他们的浏览器或Soundcloud应用程序“完成操作”。
有没有办法绕过这个屏幕,只是在Soundcloud播放器中播放曲目?
这是我目前使用的代码。请提出任何修改或新方法。
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://m.soundcloud.com/blackburnravers/dj-nj-house-music-volume-3"));
startActivity(intent);
答案 0 :(得分:9)
最后我自己找到了解决方案。似乎没有人知道这一点。 通过使用以下代码段,您可以默认从Android应用程序中打开声音云播放器。
String id = "114143409"; //Track id
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("soundcloud://tracks:" + id));
startActivity(intent);
重要提示:您必须在Android设备上安装声音云播放器。
<强>更新强>
Soundcloud社区严格建议使用sounds
代替tracks
String id = "114143409"; //Track id
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("soundcloud://sounds:" + id));
startActivity(intent);
答案 1 :(得分:2)
Scheme soundcloud:// tracks 无法运行某些Android设备。从soundcloud社区开始,他们严格建议使用声音而不是曲目
String id = "yOUR_id"; //Track id
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("soundcloud://sounds:" + id));
startActivity(intent);
答案 2 :(得分:0)
同样适用于用户:
String id = "123395690"; //Userid
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("soundcloud://users:" + id));
startActivity(intent);