0

How can i implement share button of soundcloud which share a link of audio track and when user click on it open this track with soundcloud application.

I searched but i didn't find any thing all of them share audio or image or text or application, so any help of how can i do that.

Thanks in advance.

Mohamed Salama
  • 167
  • 1
  • 13

1 Answers1

0

See this for adding sound from Soundcloud app.

See this for accessing Soundcloud to play song in Soundcloud

This code from enadun may help:

String id = "114143409"; //Track id
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("soundcloud://sounds:" + id));
startActivity(intent);
Milie
  • 374
  • 1
  • 6
  • 22