:
Intent shareImage = new Intent();
shareImage.setAction(Intent.ACTION_SEND);
String mimeTyp = "image/png";
shareImage.setType(mimeTyp);
shareImage.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(image));
startActivity(Intent.createChooser(shareImage, "Share Image"));
, Intent Filter , .
, , , :
<intent-filter ...>
<action android:name="android.intent.action.SEND" />
<data android:mimeType="image/png" android:scheme="http"... />
.
.
.
</intent-filter>
, , .