1

在我的 android 应用程序中,我正在录制一个音频文件,然后我想将其分享给 SoundCloud 及其GET网址。最好的方法是什么?

我可以通过明确的方式分享,Intent但我怎样才能获得曲目网址呢?我应该使用java包装器上传音频吗?

4

1 回答 1

2
File myAudiofile = new File("/path/to/audio.mp3");
Intent intent = new Intent("com.soundcloud.android.SHARE")
  .putExtra(Intent.EXTRA_STREAM, Uri.fromFile(myAudiofile))
  .putExtra("com.soundcloud.android.extra.title", "Demo");
  // more metadata can be set, see below

try {
    // takes the user to the SoundCloud sharing screen
    startActivityForResult(intent, 0);
} catch (ActivityNotFoundException e) {
    // SoundCloud Android app not installed, show a dialog etc.
}

参考:

于 2012-12-26T20:34:53.703 回答