| Steps to Reproduce: | Implement an Android application. Fire an intent with ACTION_SEND with both EXTRA_TEXT and EXTRA_STREAM set eg. Intent intent = new Intent(Intent.ACTION_SEND); intent.putExtra(Intent.EXTRA_TEXT, "test"); intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(image)); intent.setType("image/jpeg"); startActivity( Intent.createChooser(intent,"Send with")); Share with the facebook app |
|---|---|
| Expected Behavior: | I would expect the facebook application to be opened with both the image and text populated into the post box. This is how the Gmail app displays this input. |
| Actual Behavior: | The image is populated and the text ignored. |