Depending on what exactly you mean, it is possible that this functionality is already built-in. Using intent ACTION_SENDallows the system to coordinate actions for the exchange of arbitrary types of data. There are applications that can send images and videos to Twitter, YouTube, Picasa, MMS, Bluetooth, etc.
- () , :
Intent msg = new Intent(Intent.ACTION_SEND);
msg.setType("image/jpeg");
msg.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///sdcard/foo.jpg"));
startActivity(Intent.createChooser(msg, "Share image"));
, , -, , , . - , , , -, Android. , , .
API Android org.apache.http -.