My app can share pictures. When I try to share pictures, it pop up a
list of apps which can share. Everything works find. But recently I
got some reports that on some phones, the messaging app is not listed
in it. But from Gallery, if they try to share, the messaging app is in
it. The following is the code i used to share. Did i do anything
wrong?


         Intent shareIntent = new Intent(Intent.ACTION_SEND);
        shareIntent .setType("image/*");
        emailIntent.putExtra(Intent.EXTRA_STREAM,
Uri.fromFile(picFile));
        startActivity(Intent.createChooser(shareIntent , "Share
Picture"));

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to