Android SDK Version
All Implemented Interfaces:
com.facebook.FacebookDialog


public abstract class FacebookDialogBase<CONTENT extends Object, RESULT extends Object>
 implements FacebookDialog<CONTENT, RESULT>
                    
com.facebook.internal is solely for the use of other packages within the Facebook SDK for Android. Use of any of the classes in this package is unsupported, and they may be modified or removed without warning at any time.
Nested Class Summary
Modifier and TypeClassDescription
public classFacebookDialogBase.Companion
Field Summary
Modifier and TypeFieldDescription
private IntegerrequestCode
Method Summary
Modifier and TypeMethodDescription
final IntegergetRequestCode()
final UnitsetRequestCode(Integer requestCode) Set the request code for the startActivityForResult call.
final UnitsetCallbackManager(CallbackManager callbackManager) Set the callback manager that will handle callbacks for this dialog.
UnitregisterCallback(CallbackManager callbackManager, FacebookCallback<RESULT> callback) Allows the registration of a callback that will be executed once the dialog is closed, with success, cancel or error details.
UnitregisterCallback(CallbackManager callbackManager, FacebookCallback<RESULT> callback, Integer requestCode) Allows the registration of a callback that will be executed once the dialog is closed, with success, cancel or error details.
BooleancanShow(CONTENT content) Indicates whether the dialog can be shown for the content passed in.
Unitshow(CONTENT content) Shows the dialog for the content passed in.
ActivityResultContract<CONTENT, CallbackManager.ActivityResultParameters>createActivityResultContractForShowingDialog(CallbackManager callbackManager) Creates the ActivityResultContract instance for showing the dialog with Androidx activities and fragments.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Method Detail

getRequestCode

 final IntegergetRequestCode()

setRequestCode

 final UnitsetRequestCode(Integer requestCode)
Set the request code for the startActivityForResult call. The requestCode should be outside of the range of those reserved for the Facebook SDK .
Parameters:
requestCode - the request code to use.

setCallbackManager

 final UnitsetCallbackManager(CallbackManager callbackManager)
Set the callback manager that will handle callbacks for this dialog. It will be used if the androidx activity result APIs are available.

registerCallback

UnitregisterCallback(CallbackManager callbackManager, FacebookCallback<RESULT> callback)
Allows the registration of a callback that will be executed once the dialog is closed, with success, cancel or error details. This should be called in the or methods.
Parameters:
callbackManager - CallbackManager instance that will handle the onActivityResult
callback - Callback to be called upon dialog completion

registerCallback

UnitregisterCallback(CallbackManager callbackManager, FacebookCallback<RESULT> callback, Integer requestCode)
Allows the registration of a callback that will be executed once the dialog is closed, with success, cancel or error details. This should be called in the or methods.
Parameters:
callbackManager - CallbackManager instance that will handle the Activity Result
callback - Callback to be called upon dialog completion
requestCode - The request code to use, this should be outside of the range of those reserved for the Facebook SDK com.facebook.FacebookSdk.isFacebookRequestCode.

canShow

BooleancanShow(CONTENT content)
Indicates whether the dialog can be shown for the content passed in.
Parameters:
content - the content to check

show

Unitshow(CONTENT content)
Shows the dialog for the content passed in.
Parameters:
content - the content to show

createActivityResultContractForShowingDialog

ActivityResultContract<CONTENT, CallbackManager.ActivityResultParameters> createActivityResultContractForShowingDialog(CallbackManager callbackManager)
Creates the ActivityResultContract instance for showing the dialog with Androidx activities and fragments.
Parameters:
callbackManager - CallbackManager instance that will handle the onActivityResult