在我的Android应用程序中,我正在录制一个音频文件,然后我想分享给SoundCloud和GET
的网址。最好的方法是什么?
我可以通过明确的Intent
分享,但我怎样才能获得跟踪网址?我应该使用java包装器上传音频吗?
答案 0 :(得分: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.
}
参考: