android Programming Glossary: intent.extra_text
problem sending an email with an attachment programmatically http://stackoverflow.com/questions/1247983/problem-sending-an-email-with-an-attachment-programmatically 2 Sending the image as body content sendIntent.putExtra Intent.EXTRA_TEXT HTML BODY b IMG SRC data image jpeg base64 imagepath alt pleaseview..
How to send HTML email http://stackoverflow.com/questions/2007540/how-to-send-html-email Subject emailIntent.putExtra android.content.Intent.EXTRA_TEXT Test But I need to send HTML formatted text. Trying to setType.. Intent.EXTRA_SUBJECT The Subject shareIntent.putExtra Intent.EXTRA_TEXT Html.fromHtml new StringBuilder .append p b Some Content b p..
How to send email from my Android application? http://stackoverflow.com/questions/2197741/how-to-send-email-from-my-android-application Intent.EXTRA_SUBJECT subject of email i.putExtra Intent.EXTRA_TEXT body of email try startActivity Intent.createChooser i Send..
Android multiple email attachments using Intent http://stackoverflow.com/questions/2264622/android-multiple-email-attachments-using-intent Intent.EXTRA_SUBJECT subject emailIntent.putExtra Intent.EXTRA_TEXT emailText has to be an ArrayList ArrayList Uri uris new ArrayList..
Restful API service http://stackoverflow.com/questions/3197335/restful-api-service STATUS_FINISHED b catch Exception e b.putString Intent.EXTRA_TEXT e.toString receiver.send STATUS_ERROR b this.stopSelf ResultReceiver..
How to open Email program via Intents (but only an Email program) http://stackoverflow.com/questions/3312438/how-to-open-email-program-via-intents-but-only-an-email-program Intent.EXTRA_SUBJECT subject intent.putExtra Intent.EXTRA_TEXT message Intent mailer Intent.createChooser intent null startActivity..
Android Share Via Dialog http://stackoverflow.com/questions/3553017/android-share-via-dialog Intent.ACTION_SEND share.setType text plain share.putExtra Intent.EXTRA_TEXT I'm being sent startActivity Intent.createChooser share Share..
Android: How do I attach a temporary, generated image to an email? http://stackoverflow.com/questions/3570914/android-how-do-i-attach-a-temporary-generated-image-to-an-email new String carbon@somewhere.com intent.putExtra Intent.EXTRA_TEXT Something textual intent.putExtra Intent.EXTRA_STREAM pngUri..
How to send email in Android ? http://stackoverflow.com/questions/3585556/how-to-send-email-in-android Intent.EXTRA_SUBJECT Test Subject sendIntent.putExtra Intent.EXTRA_TEXT Test Text sendIntent.putExtra Intent.EXTRA_STREAM Uri.parse..
How to share photo with CAPTION via Android share intent on Facebook? http://stackoverflow.com/questions/5214764/how-to-share-photo-with-caption-via-android-share-intent-on-facebook examplePhoto set caption shareCaptionIntent.putExtra Intent.EXTRA_TEXT example caption shareCaptionIntent.putExtra Intent.EXTRA_SUBJECT.. issue is that the Android Facebook App doesn't look for Intent.EXTRA_TEXT when it filters an ACTION_SEND Intent with type image for photo..
How to add an image in email body http://stackoverflow.com/questions/5244472/how-to-add-an-image-in-email-body Parcelable whereas ImageSpan does not. So when the Intent.EXTRA_TEXT is retrieved in the new Activity the ImageSpan will fail to..
Trying to attach a file from SD Card to email http://stackoverflow.com/questions/587917/trying-to-attach-a-file-from-sd-card-to-email file sdcard dcim Camera filename.jpg sendIntent.putExtra Intent.EXTRA_TEXT Enjoy the photo startActivity Intent.createChooser sendIntent.. Test Subject emailIntent.putExtra android.content.Intent.EXTRA_TEXT go on read the emails Log.v getClass .getSimpleName sPhotoUri..
Android - Share on Facebook, Twitter, Mail, ecc http://stackoverflow.com/questions/6814268/android-share-on-facebook-twitter-mail-ecc Intent.ACTION_SEND share.setType text plain share.putExtra Intent.EXTRA_TEXT message startActivity Intent.createChooser share Title of the..
How to customize share intent in Android? http://stackoverflow.com/questions/6827407/how-to-customize-share-intent-in-android intent.setType text plain intent.putExtra Intent.EXTRA_TEXT link startActivity Intent.createChooser intent Share with but..
How to force Share Intent to open a specific app? http://stackoverflow.com/questions/8308666/how-to-force-share-intent-to-open-a-specific-app sharingIntent.setType image sharingIntent.putExtra Intent.EXTRA_TEXT body text sharingIntent.putExtra Intent.EXTRA_STREAM screenshotUri.. sharingIntent.putExtra Intent.EXTRA_TEXT your title text startActivity sharingIntent catch Exception.. com.twitter.android.PostActivity sharingIntent.putExtra Intent.EXTRA_TEXT message startActivity sharingIntent catch Exception e Log.e..
Send Email Intent http://stackoverflow.com/questions/8701634/send-email-intent Intent.EXTRA_SUBJECT Subject intent.putExtra Intent.EXTRA_TEXT I'm email body. startActivity Intent.createChooser intent Send..
problem sending an email with an attachment programmatically http://stackoverflow.com/questions/1247983/problem-sending-an-email-with-an-attachment-programmatically Intent.EXTRA_STREAM Uri.parse file sdcard abc.jpg method 2 Sending the image as body content sendIntent.putExtra Intent.EXTRA_TEXT HTML BODY b IMG SRC data image jpeg base64 imagepath alt pleaseview this image b BODY HTML i can successfully attach the..
How to send HTML email http://stackoverflow.com/questions/2007540/how-to-send-html-email emailIntent.putExtra android.content.Intent.EXTRA_SUBJECT Subject emailIntent.putExtra android.content.Intent.EXTRA_TEXT Test But I need to send HTML formatted text. Trying to setType text html doesn't work. android share improve this question.. Intent.ACTION_SENDTO Uri.parse mailto shareIntent.putExtra Intent.EXTRA_SUBJECT The Subject shareIntent.putExtra Intent.EXTRA_TEXT Html.fromHtml new StringBuilder .append p b Some Content b p .append small p More content p small .toString share improve..
How to send email from my Android application? http://stackoverflow.com/questions/2197741/how-to-send-email-from-my-android-application Intent.EXTRA_EMAIL new String recipient@example.com i.putExtra Intent.EXTRA_SUBJECT subject of email i.putExtra Intent.EXTRA_TEXT body of email try startActivity Intent.createChooser i Send mail... catch android.content.ActivityNotFoundException ex Toast.makeText..
Android multiple email attachments using Intent http://stackoverflow.com/questions/2264622/android-multiple-email-attachments-using-intent new String emailCC emailIntent.putExtra Intent.EXTRA_SUBJECT subject emailIntent.putExtra Intent.EXTRA_TEXT emailText has to be an ArrayList ArrayList Uri uris new ArrayList Uri convert from paths to Android friendly Parcelable..
Restful API service http://stackoverflow.com/questions/3197335/restful-api-service something b.putParcelableArrayList results results receiver.send STATUS_FINISHED b catch Exception e b.putString Intent.EXTRA_TEXT e.toString receiver.send STATUS_ERROR b this.stopSelf ResultReceiver extension edited about to implement MyResultReceiver.Receiver..
How to open Email program via Intents (but only an Email program) http://stackoverflow.com/questions/3312438/how-to-open-email-program-via-intents-but-only-an-email-program new Intent Intent.ACTION_SEND intent.setType text plain intent.putExtra Intent.EXTRA_SUBJECT subject intent.putExtra Intent.EXTRA_TEXT message Intent mailer Intent.createChooser intent null startActivity mailer However the problem is that the ACTION_SEND..
Android Share Via Dialog http://stackoverflow.com/questions/3553017/android-share-via-dialog
Android: How do I attach a temporary, generated image to an email? http://stackoverflow.com/questions/3570914/android-how-do-i-attach-a-temporary-generated-image-to-an-email Network Graphics intent.putExtra android.content.Intent.EXTRA_CC new String carbon@somewhere.com intent.putExtra Intent.EXTRA_TEXT Something textual intent.putExtra Intent.EXTRA_STREAM pngUri And then start the activity context.startActivity Intent.createChooser..
How to send email in Android ? http://stackoverflow.com/questions/3585556/how-to-send-email-in-android sendIntent new Intent Intent.ACTION_SEND sendIntent.putExtra Intent.EXTRA_SUBJECT Test Subject sendIntent.putExtra Intent.EXTRA_TEXT Test Text sendIntent.putExtra Intent.EXTRA_STREAM Uri.parse file fileName sendIntent.setType image jpeg startActivity Intent.createChooser..
How to share photo with CAPTION via Android share intent on Facebook? http://stackoverflow.com/questions/5214764/how-to-share-photo-with-caption-via-android-share-intent-on-facebook examplePhoto shareCaptionIntent.putExtra Intent.EXTRA_STREAM examplePhoto set caption shareCaptionIntent.putExtra Intent.EXTRA_TEXT example caption shareCaptionIntent.putExtra Intent.EXTRA_SUBJECT example caption startActivity Intent.createChooser shareCaptionIntent.. is uploaded without the photo..... My guess is that the issue is that the Android Facebook App doesn't look for Intent.EXTRA_TEXT when it filters an ACTION_SEND Intent with type image for photo uploading. So this issue could be resolved if the Android..
How to add an image in email body http://stackoverflow.com/questions/5244472/how-to-add-an-image-in-email-body in the EditText and not an Image is that StyleSplan is implementing Parcelable whereas ImageSpan does not. So when the Intent.EXTRA_TEXT is retrieved in the new Activity the ImageSpan will fail to unparcel and therefor not be part of the style appended to the..
Trying to attach a file from SD Card to email http://stackoverflow.com/questions/587917/trying-to-attach-a-file-from-sd-card-to-email Photo sendIntent.putExtra Intent.EXTRA_STREAM Uri.parse file sdcard dcim Camera filename.jpg sendIntent.putExtra Intent.EXTRA_TEXT Enjoy the photo startActivity Intent.createChooser sendIntent Email So if I launch using the Gmail menu context It shows.. emailIntent.putExtra android.content.Intent.EXTRA_SUBJECT Test Subject emailIntent.putExtra android.content.Intent.EXTRA_TEXT go on read the emails Log.v getClass .getSimpleName sPhotoUri Uri.parse file sPhotoFileName emailIntent.putExtra Intent.EXTRA_STREAM..
Android - Share on Facebook, Twitter, Mail, ecc http://stackoverflow.com/questions/6814268/android-share-on-facebook-twitter-mail-ecc
How to customize share intent in Android? http://stackoverflow.com/questions/6827407/how-to-customize-share-intent-in-android intent to open the share dialog Intent intent new Intent Intent.ACTION_SEND intent.setType text plain intent.putExtra Intent.EXTRA_TEXT link startActivity Intent.createChooser intent Share with but i need the dialog not to appear and share directly to one..
How to force Share Intent to open a specific app? http://stackoverflow.com/questions/8308666/how-to-force-share-intent-to-open-a-specific-app Intent.ACTION_SEND Uri screenshotUri Uri.parse file sdcard test.jpg sharingIntent.setType image sharingIntent.putExtra Intent.EXTRA_TEXT body text sharingIntent.putExtra Intent.EXTRA_STREAM screenshotUri startActivity Intent.createChooser sharingIntent Share.. sharingIntent.setClassName com.facebook.katana com.facebook.katana.ShareLinkActivity sharingIntent.putExtra Intent.EXTRA_TEXT your title text startActivity sharingIntent catch Exception e Intent i new Intent Intent.ACTION_VIEW i.setData Uri.parse.. sharingIntent.setClassName com.twitter.android com.twitter.android.PostActivity sharingIntent.putExtra Intent.EXTRA_TEXT message startActivity sharingIntent catch Exception e Log.e In Exception Comes here Intent i new Intent i.putExtra Intent.EXTRA_TEXT..
Send Email Intent http://stackoverflow.com/questions/8701634/send-email-intent Intent.EXTRA_EMAIL emailaddress@emailaddress.com intent.putExtra Intent.EXTRA_SUBJECT Subject intent.putExtra Intent.EXTRA_TEXT I'm email body. startActivity Intent.createChooser intent Send Email The above code opens a dialog showing following apps..
|