ShareButtonBase
이 클래스의 최신 버전을 사용할 수 있습니다. 확인해보세요 최신 버전.

A base class for sharing buttons.

확장:FacebookButtonBase
패키지:widget
생성자
ShareButtonBase(Context, AttributeSet, int, String)
protected ShareButtonBase(Context context, AttributeSet attrs, int defStyleAttr, String analyticsButtonCreatedEventName)
매개변수설명
context
attrs
defStyleAttr
analyticsButtonCreatedEventName
인스턴스 메서드
getShareContent()

Returns the share content from the button.

public ShareContent getShareContent()
Returns
The share content.
setShareContent(ShareContent)

Sets the share content on the button.

public void setShareContent(ShareContent shareContent)
매개변수설명
shareContentThe share content.
setRequestCode(int)

Set the request code for the startActivityForResult call. The requestCode should be outside of the range of those reserved for the Facebook SDK FacebookSdk.isFacebookRequestCode(int). This method should also be called prior to registering any callbacks.

protected void setRequestCode(int requestCode)
매개변수설명
requestCodeThe request code to use.
registerCallback(CallbackManager, FacebookCallback)

Allows registration of a callback for when the share completes. This should be called in the Activity.onCreate(android.os.Bundle) or Fragment.onCreate(android.os.Bundle) methods.

public void registerCallback(CallbackManager callbackManager, FacebookCallback callback)
매개변수설명
callbackManagerThe CallbackManager instance that will be handling results that are received via Activity.onActivityResult(int, int, android.content.Intent)
callbackThe callback that should be called to handle dialog completion.
registerCallback(CallbackManager, FacebookCallback, int)

Allows registration of a callback for when the share completes. This should be called in the Activity.onCreate(android.os.Bundle) or Fragment.onCreate(android.os.Bundle) methods.

public void registerCallback(CallbackManager callbackManager, FacebookCallback callback, int requestCode)
매개변수설명
callbackManagerThe CallbackManager instance that will be handling results that are received via Activity.onActivityResult(int, int, android.content.Intent)
callbackThe callback that should be called to handle dialog completion.
requestCodeThe request code to use, this should be outside of the range of those reserved for the Facebook SDK FacebookSdk.isFacebookRequestCode(int).
getShareOnClickListener()
protected abstract OnClickListener getShareOnClickListener()