Force a Soundcloud track to open in Soundcloud app on Android

前端 未结 3 1933
孤街浪徒
孤街浪徒 2021-01-01 07:37

I have a mobile application that links to Soundcloud track. On Android, clicking on those links brings up a dialog asking the user to \"Complete action using\" their browser

3条回答
  •  -上瘾入骨i
    2021-01-01 08:03

    The same works with users:

    String id = "123395690"; //Userid
    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("soundcloud://users:" + id));
    startActivity(intent);
    

提交回复
热议问题