gpt4 book ai didi

android - 强制在 Android 上的 Soundcloud 应用程序中打开 Soundcloud 轨道

转载 作者:行者123 更新时间:2023-12-02 21:08:56 25 4
gpt4 key购买 nike

我有一个链接到 Soundcloud 轨道的移动应用程序。在 Android 上,单击这些链接会弹出一个对话框,要求用户“使用浏览器或 Soundcloud 应用程序完成操作”。

enter image description here

有没有办法绕过这个屏幕,只在 Soundcloud 播放器中播放轨道?

这是我当前使用的代码。请提出任何修改或新方法来执行此操作。

    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://m.soundcloud.com/blackburnravers/dj-nj-house-music-volume-3"));
startActivity(intent);

最佳答案

最后我自己找到了解决方案。似乎没有人知道这件事。通过使用以下代码 fragment ,您可以从 Android 应用程序默认打开声音云播放器。

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

重要提示:您必须在 Android 设备上安装声音云播放器。

更新

Soundcloud 社区严格建议使用声音而不是轨道

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

关于android - 强制在 Android 上的 Soundcloud 应用程序中打开 Soundcloud 轨道,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19513977/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com