I'm switching some Android Facebook code from an Activity to a Fragment. Prior to the switch everything worked fine, but now the onComplete() callback is not being executed.
Does the Facebook code not work with Fragments, or am I doing something wrong?
Here's the original code (in a SherlockActivity):
if (!mFacebook.isSessionValid()) {
mFacebook.authorize(MyActivity.this, permissions, new DialogListener() {
@Override
public void onComplete(Bundle values) { ... } // CALLED AS EXPECTED
}
}
And here's the new code (in a SherlockFragment):
if (!mFacebook.isSessionValid()) {
mFacebook.authorize(getActivity(), permissions, new DialogListener() {
@Override
public void onComplete(Bundle values) { ... } // DOES NOT GET CALLED
}
}
Both the Activity and the Fragment include the same onActivityResult() as required by Facebook:
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
mFacebook.authorizeCallback(requestCode, resultCode, data);
}
Thanks for your help!
EDIT: A similar question is asked here, where the accepted answer is to change the Fragment to a FragmentActivity. But I don't see how this helps, as then it's no longer a Fragment (which I need for other reasons). Suggestions?
EDIT 2: I rolled my own solution. See below.