When using the facebook android sdk to open Dialogs it all works well.
However, if the user clicks the Back button then the dialog indeed closes but the onCancel method of the dialog listener (or any other method) is not called.
I searched about this matter and found this pull request from the fb android sdk on github: Calls Cancel on DialogListener when Dialog is Cancelled.
I took one part and modified it a bit to get this:
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK && event.getAction() == KeyEvent.ACTION_DOWN) {
mWebView.stopLoading();
dismiss();
mListener.onCancel();
return true;
}
return true;
}
and I added it to the FbDialog class, and indeed this seems to do the trick.
What I'm wonderring is why isn't this a part of the sdk? That pull request is more than a year old, and the last response is about 11 months old. Why not adding it to the sdk source?
Since this solution is working it's not urgent, but I don't like to modify the source of the facebook sdk since it might be problematic later on (if/when they update).
Any ideas?