WebDialog.FeedDialogBuilder
This class is no longer available in the most recent version of the SDK.
A more recent version of this class is available. Check out the latest version.

Provides a builder that allows construction of the parameters for showing the Feed Dialog.

Extends:Object
Package:widget
Constructors
WebDialog.BuilderBase(Context, String)
protected WebDialog.BuilderBase(Context context, String action)
ParameterDescription
context
action
WebDialog.BuilderBase(Context, Session, String, Bundle)
protected WebDialog.BuilderBase(Context context, Session session, String action, Bundle parameters)
ParameterDescription
context
session
action
parameters
WebDialog.BuilderBase(Context, String, String, Bundle)
protected WebDialog.BuilderBase(Context context, String applicationId, String action, Bundle parameters)
ParameterDescription
context
applicationId
action
parameters
WebDialog.FeedDialogBuilder(Context)

Constructor that builds a Feed Dialog using either the active session, or the application ID specified in the application/meta-data.

public WebDialog.FeedDialogBuilder(Context context)
ParameterDescription
contextThe Context within which the dialog will be shown.
WebDialog.FeedDialogBuilder(Context, Session)

Constructor that builds a Feed Dialog using the provided session.

public WebDialog.FeedDialogBuilder(Context context, Session session)
ParameterDescription
contextThe Context within which the dialog will be shown.
sessionThe Session representing an authenticating user to use for showing the dialog; must not be null, and must be opened.
WebDialog.FeedDialogBuilder(Context, Session, Bundle)

Constructor that builds a Feed Dialog using the provided session and parameters.

public WebDialog.FeedDialogBuilder(Context context, Session session, Bundle parameters)
ParameterDescription
contextThe Context within which the dialog will be shown.
sessionThe Session representing an authenticating user to use for showing the dialog; must not be null, and must be opened.
parametersA Bundle containing parameters to pass as part of the dialog URL. No validation is done on these parameters; it is the caller's responsibility to ensure they are valid. For more information, see https://developers.facebook.com/docs/reference/dialogs/feed/.
WebDialog.FeedDialogBuilder(Context, String, Bundle)

Constructor that builds a Feed Dialog using the provided application ID and parameters.

public WebDialog.FeedDialogBuilder(Context context, String applicationId, Bundle parameters)
ParameterDescription
contextThe Context within which the dialog will be shown.
applicationIdThe application ID to use. If null, the application ID specified in the application/meta-data will be used instead.
parametersA Bundle containing parameters to pass as part of the dialog URL. No validation is done on these parameters; it is the caller's responsibility to ensure they are valid. For more information, see https://developers.facebook.com/docs/reference/dialogs/feed/.
Instance Methods
setTheme(int)

Sets a theme identifier which will be passed to the underlying Dialog.

public BuilderBase setTheme(int theme)
ParameterDescription
themeA theme identifier which will be passed to the Dialog class
Returns
The builder
setOnCompleteListener(OnCompleteListener)

Sets the listener which will be notified when the dialog finishes.

public BuilderBase setOnCompleteListener(OnCompleteListener listener)
ParameterDescription
listenerThe listener to notify, or null if no notification is desired
Returns
The builder
build()

Constructs a WebDialog using the parameters provided. The dialog is not shown, but is ready to be shown by calling Dialog.show().

public WebDialog build()
Returns
The WebDialog
getApplicationId()
protected String getApplicationId()
getContext()
protected Context getContext()
getTheme()
protected int getTheme()
getParameters()
protected Bundle getParameters()
getListener()
protected OnCompleteListener getListener()
setFrom(String)

Sets the ID of the profile that is posting to Facebook. If none is specified, the default is "me". This profile must be either the authenticated user or a Page that the user is an administrator of.

public FeedDialogBuilder setFrom(String id)
ParameterDescription
idFacebook ID of the profile to post from
Returns
The builder
setTo(String)

Sets the ID of the profile that the story will be published to. If not specified, it will default to the same profile that the story is being published from. The ID must be a friend who also uses your app.

public FeedDialogBuilder setTo(String id)
ParameterDescription
idFacebook ID of the profile to post to
Returns
The builder
setPicture(String)

Sets the URL of a picture to be shared.

public FeedDialogBuilder setPicture(String picture)
ParameterDescription
pictureThe URL of the picture
Returns
The builder
setSource(String)

Sets the URL of a media file attached to this post. If this is set, any picture set via setPicture will be ignored.

public FeedDialogBuilder setSource(String source)
ParameterDescription
sourceThe URL of the media file
Returns
The builder
setName(String)

Sets the name of the item being shared.

public FeedDialogBuilder setName(String name)
ParameterDescription
nameThe name
Returns
The builder
setCaption(String)

Sets the caption to be displayed.

public FeedDialogBuilder setCaption(String caption)
ParameterDescription
captionThe caption
Returns
The builder
setDescription(String)

Sets the description to be displayed.

public FeedDialogBuilder setDescription(String description)
ParameterDescription
descriptionThe description
Returns
The builder