|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectandroid.support.v4.app.ShareCompat.IntentBuilder
public static class ShareCompat.IntentBuilder
IntentBuilder is a helper for constructing Intent.ACTION_SEND
and
Intent.ACTION_SEND_MULTIPLE
sharing intents and starting activities
to share content. The ComponentName and package name of the calling activity
will be included.
Method Summary | |
---|---|
ShareCompat.IntentBuilder |
addEmailBcc(String address)
Add an email address to be used in the "bcc" field of the final Intent. |
ShareCompat.IntentBuilder |
addEmailBcc(String[] addresses)
Add an array of email addresses to be used in the "bcc" field of the final Intent. |
ShareCompat.IntentBuilder |
addEmailCc(String address)
Add an email address to be used in the "cc" field of the final Intent. |
ShareCompat.IntentBuilder |
addEmailCc(String[] addresses)
Add an array of email addresses to be used in the "cc" field of the final Intent. |
ShareCompat.IntentBuilder |
addEmailTo(String address)
Add an email address to be used in the "to" field of the final Intent. |
ShareCompat.IntentBuilder |
addEmailTo(String[] addresses)
Add an array of email addresses to be used in the "to" field of the final Intent. |
ShareCompat.IntentBuilder |
addStream(android.net.Uri streamUri)
Add a stream URI to the data that should be shared. |
android.content.Intent |
createChooserIntent()
Create an Intent that will launch the standard Android activity chooser, allowing the user to pick what activity/app on the system should handle the share. |
static ShareCompat.IntentBuilder |
from(android.app.Activity launchingActivity)
Create a new IntentBuilder for launching a sharing action from launchingActivity. |
android.content.Intent |
getIntent()
Retrieve the Intent as configured so far by the IntentBuilder. |
ShareCompat.IntentBuilder |
setChooserTitle(CharSequence title)
Set the title that will be used for the activity chooser for this share. |
ShareCompat.IntentBuilder |
setChooserTitle(int resId)
Set the title that will be used for the activity chooser for this share. |
ShareCompat.IntentBuilder |
setEmailBcc(String[] addresses)
Set an array of email addresses to BCC on this share. |
ShareCompat.IntentBuilder |
setEmailCc(String[] addresses)
Set an array of email addresses to CC on this share. |
ShareCompat.IntentBuilder |
setEmailTo(String[] addresses)
Set an array of email addresses as recipients of this share. |
ShareCompat.IntentBuilder |
setHtmlText(String htmlText)
Set an HTML string to be sent as part of the share. |
ShareCompat.IntentBuilder |
setStream(android.net.Uri streamUri)
Set a stream URI to the data that should be shared. |
ShareCompat.IntentBuilder |
setSubject(String subject)
Set a subject heading for this share; useful for sharing via email. |
ShareCompat.IntentBuilder |
setText(CharSequence text)
Set the literal text data to be sent as part of the share. |
ShareCompat.IntentBuilder |
setType(String mimeType)
Set the type of data being shared |
void |
startChooser()
Start a chooser activity for the current share intent. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static ShareCompat.IntentBuilder from(android.app.Activity launchingActivity)
launchingActivity
- Activity that the share will be launched from
public android.content.Intent getIntent()
To create an intent that will launch the activity chooser so that the user
may select a target for the share, see createChooserIntent()
.
public android.content.Intent createChooserIntent()
public void startChooser()
Note that under most circumstances you should use
ShareCompat.configureMenuItem()
to add a Share item to the menu while
presenting a detail view of the content to be shared instead
of invoking this directly.
public ShareCompat.IntentBuilder setChooserTitle(CharSequence title)
title
- Title string
public ShareCompat.IntentBuilder setChooserTitle(int resId)
resId
- Resource ID of the title string to use
public ShareCompat.IntentBuilder setType(String mimeType)
mimeType
- mimetype of the shared data
Intent.setType(String)
public ShareCompat.IntentBuilder setText(CharSequence text)
text
- Text to share
Intent.EXTRA_TEXT
public ShareCompat.IntentBuilder setHtmlText(String htmlText)
EXTRA_TEXT
has not already been supplied,
a styled version of the supplied HTML text will be added as EXTRA_TEXT as
parsed by Html.fromHtml
.
htmlText
- A string containing HTML markup as a richer version of the text
provided by EXTRA_TEXT.
setText(CharSequence)
public ShareCompat.IntentBuilder setStream(android.net.Uri streamUri)
This replaces all currently set stream URIs and will produce a single-stream ACTION_SEND intent.
streamUri
- URI of the stream to share
Intent.EXTRA_STREAM
public ShareCompat.IntentBuilder addStream(android.net.Uri streamUri)
streamUri
- URI of the stream to share
Intent.EXTRA_STREAM
,
Intent.ACTION_SEND
,
Intent.ACTION_SEND_MULTIPLE
public ShareCompat.IntentBuilder setEmailTo(String[] addresses)
addresses
- Email addresses to send to
Intent.EXTRA_EMAIL
public ShareCompat.IntentBuilder addEmailTo(String address)
address
- Email address to send to
Intent.EXTRA_EMAIL
public ShareCompat.IntentBuilder addEmailTo(String[] addresses)
addresses
- Email addresses to send to
Intent.EXTRA_EMAIL
public ShareCompat.IntentBuilder setEmailCc(String[] addresses)
addresses
- Email addresses to CC on the share
Intent.EXTRA_CC
public ShareCompat.IntentBuilder addEmailCc(String address)
address
- Email address to CC
Intent.EXTRA_CC
public ShareCompat.IntentBuilder addEmailCc(String[] addresses)
addresses
- Email addresses to CC
Intent.EXTRA_CC
public ShareCompat.IntentBuilder setEmailBcc(String[] addresses)
addresses
- Email addresses to BCC on the share
Intent.EXTRA_BCC
public ShareCompat.IntentBuilder addEmailBcc(String address)
address
- Email address to BCC
Intent.EXTRA_BCC
public ShareCompat.IntentBuilder addEmailBcc(String[] addresses)
addresses
- Email addresses to BCC
Intent.EXTRA_BCC
public ShareCompat.IntentBuilder setSubject(String subject)
subject
- Subject heading for this share
Intent.EXTRA_SUBJECT
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |