Last active
November 20, 2017 13:04
-
-
Save ziginsider/a51081568c05398d776886a351861a00 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MainActivity extends AppCompatActivity { | |
CallbackManager callbackManager; | |
TextView txtEmail, txtBirthday, txtFriends, txtLocation; | |
ProgressDialog mDialog; | |
ImageView imgAvatar; | |
@Override | |
protected void onActivityResult(int requestCode, int resultCode, Intent data) { | |
super.onActivityResult(requestCode, resultCode, data); | |
callbackManager.onActivityResult(requestCode, resultCode, data); | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment