[android-developers] How to email the screen
Hello,
I am trying to email whats it on the screen. I am able to email text,
but don't know what to call for the screen to be sent as an
attachment.
Intent emailIntent = new
Intent(android.content.Intent.ACTION_SEND);
String[] recipients = new String[]{""};
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,
recipients);
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,
"Hello World");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,
"This is email's message");
// need help here to attach what is currently on the
screen
emailIntent.setType("text/plain");
startActivity(Intent.createChooser(emailIntent, "Send
mail..."));
finish();
--
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+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home