-
- All Implemented Interfaces:
-
com.facebook.CallbackManager
public final class CallbackManagerImpl implements CallbackManager
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
Nested Classes Modifier and Type Class Description public interfaceCallbackManagerImpl.Callbackpublic enumCallbackManagerImpl.RequestCodeOffsetpublic classCallbackManagerImpl.Companion
-
Constructor Summary
Constructors Constructor Description CallbackManagerImpl()
-
Method Summary
Modifier and Type Method Description final UnitregisterCallback(Integer requestCode, CallbackManagerImpl.Callback callback)final UnitunregisterCallback(Integer requestCode)BooleanonActivityResult(Integer requestCode, Integer resultCode, Intent data)The method that should be called from the Activity's or Fragment's onActivityResult method. -
-
Method Detail
-
registerCallback
final Unit registerCallback(Integer requestCode, CallbackManagerImpl.Callback callback)
-
unregisterCallback
final Unit unregisterCallback(Integer requestCode)
-
onActivityResult
Boolean onActivityResult(Integer requestCode, Integer resultCode, Intent data)
The method that should be called from the Activity's or Fragment's onActivityResult method.
- Parameters:
requestCode- The request code that's received by the Activity or Fragment.resultCode- The result code that's received by the Activity or Fragment.data- The result data that's received by the Activity or Fragment.
-
-
-
-