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?
