Android SDK Version
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
Modifier and TypeClassDescription
public interfaceCallbackManagerImpl.Callback
public enumCallbackManagerImpl.RequestCodeOffset
public classCallbackManagerImpl.Companion
Constructor Summary
ConstructorDescription
CallbackManagerImpl()
Method Summary
Modifier and TypeMethodDescription
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.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Constructor Detail

CallbackManagerImpl

CallbackManagerImpl()
Method Detail

registerCallback

 final UnitregisterCallback(Integer requestCode, CallbackManagerImpl.Callback callback)

unregisterCallback

 final UnitunregisterCallback(Integer requestCode)

onActivityResult

BooleanonActivityResult(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.