You can take a snapshot of your mobile screen using DDMS and attach it here.

On Thu, Aug 26, 2010 at 12:11 AM, ArcDroid <[email protected]> wrote:

> 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 [email protected]
> To unsubscribe from this group, send email to
> [email protected]<android-developers%[email protected]>
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

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

Reply via email to