Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using the android share intent chooser to share text, images and audio. For the first two issues i used the following:

Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
case text:
  shareIntent.setType("text/plain");
  // build the body of the message to be shared
  String shareMessage = "Shared text message";
  // add the message
  shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareMessage);
case bitmap:
   shareIntent.setType("image/jpeg");
   Uri sharedBmpUri = storeImage(sharedBmp);
   shareIntent.putExtra(android.content.Intent.EXTRA_STREAM, sharedBmpUri);
case audio:
   AudioTrack sharedAudio;
   .... ???

 // start the chooser for sharing
 startActivity(Intent.createChooser(shareIntent, "Message Share"));

What should i use for sharing the AudioTrack?

EDIT:

I managed to do the share with this:

shareIntent.setType("audio/mp3");
shareIntent.putExtra(android.content.Intent.EXTRA_STREAM, DrawBoardController.storeAudio((ByteArrayBuffer) message.getMessageData()));

What i'm missing now is the function that allows me to store a temp ByteArrayBuffer to the SD card: "storeAudio(...)". Any tips for this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.