WebDialog.RequestsDialogBuilder
이 클래스는 더 이상 최신 버전의 SDK에서 사용할 수 없습니다.
이 클래스의 최신 버전을 사용할 수 있습니다. 확인해보세요 최신 버전.

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

확장:Object
패키지:widget
생성자
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.RequestsDialogBuilder(Context, Session)

Constructor.

public WebDialog.RequestsDialogBuilder(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.RequestsDialogBuilder(Context, Session, Bundle)

Constructor.

public WebDialog.RequestsDialogBuilder(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/requests/.
인스턴스 메서드
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()
setMessage(String)

Sets the string users receiving the request will see. The maximum length is 60 characters.

public RequestsDialogBuilder setMessage(String message)
매개변수설명
messageThe message
Returns
The builder
setTo(String)

Sets the user ID or user name the request will be sent to. If this is not specified, a friend selector will be displayed and the user can select up to 50 friends.

public RequestsDialogBuilder setTo(String id)
매개변수설명
idThe id or user name to send the request to
Returns
The builder
setData(String)

Sets optional data which can be used for tracking; maximum length is 255 characters.

public RequestsDialogBuilder setData(String data)
매개변수설명
dataThe data
Returns
The builder
setTitle(String)

Sets an optional title for the dialog; maximum length is 50 characters.

public RequestsDialogBuilder setTitle(String title)
매개변수설명
titleThe title
Returns
The builder