Android SDK Version


public interface CallbackManager
The CallbackManager manages the callbacks into the FacebookSdk from an Activity's or Fragment's onActivityResult() method.
Nested Class Summary
Modifier and TypeClassDescription
public classCallbackManager.Factory
The factory class for the com.facebook.CallbackManager.
public final classCallbackManager.ActivityResultParameters
A type to contains all the parameters for the legacy activity result.
Method Summary
Modifier and TypeMethodDescription
abstract 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
Method Detail

onActivityResult

 abstract 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.