WebDialog.FeedDialogBuilder
最新版本的 SDK 已不再提供此課程。
有此級別的更新版本。前往查看 最新版本。

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

延伸:Object
套件:widget
建構函式
WebDialog.BuilderBase(Context, String)
protected WebDialog.BuilderBase(Context context, String action)
參數說明
context
action
WebDialog.BuilderBase(Context, Session, String, Bundle)
protected WebDialog.BuilderBase(Context context, Session session, String action, Bundle parameters)
參數說明
context
session
action
parameters
WebDialog.BuilderBase(Context, String, String, Bundle)
protected WebDialog.BuilderBase(Context context, String applicationId, String action, Bundle parameters)
參數說明
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)
參數說明
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)
參數說明
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)
參數說明
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)
參數說明
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/.
執行個體方法
setTheme(int)

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

public BuilderBase setTheme(int theme)
參數說明
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)
參數說明
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)
參數說明
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.

public FeedDialogBuilder setTo(String id)
參數說明
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)
參數說明
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)
參數說明
sourceThe URL of the media file
Returns
The builder
setName(String)

Sets the name of the item being shared.

public FeedDialogBuilder setName(String name)
參數說明
nameThe name
Returns
The builder
setCaption(String)

Sets the caption to be displayed.

public FeedDialogBuilder setCaption(String caption)
參數說明
captionThe caption
Returns
The builder
setDescription(String)

Sets the description to be displayed.

public FeedDialogBuilder setDescription(String description)
參數說明
descriptionThe description
Returns
The builder