-
public interface CallbackManagerThe CallbackManager manages the callbacks into the FacebookSdk from an Activity's or Fragment's onActivityResult() method.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classCallbackManager.FactoryThe factory class for the com.facebook.CallbackManager.
public final classCallbackManager.ActivityResultParametersA type to contains all the parameters for the legacy activity result.
-
Method Summary
Modifier and Type Method Description abstract BooleanonActivityResult(Integer requestCode, Integer resultCode, Intent data)The method that should be called from the Activity's or Fragment's onActivityResult method. -
-
Method Detail
-
onActivityResult
abstract 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.
-
-
-
-