Package 

Interface CallbackManager


  • 
    public interface CallbackManager
    
                        

    The CallbackManager manages the callbacks into the FacebookSdk from an Activity's or Fragment's onActivityResult() method.

    • Method Summary

      Modifier and Type Method Description
      abstract Boolean onActivityResult(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 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.