-
- 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 interface
CallbackManagerImpl.Callback
public enum
CallbackManagerImpl.RequestCodeOffset
public class
CallbackManagerImpl.Companion
-
Constructor Summary
Constructors Constructor Description CallbackManagerImpl()
-
Method Summary
Modifier and Type Method Description final Unit
registerCallback(Integer requestCode, CallbackManagerImpl.Callback callback)
final Unit
unregisterCallback(Integer requestCode)
Boolean
onActivityResult(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.
-
-
-
-