here it is my problem:
I want to enclose the Facebook logic into a class (let's call it fbConnect), and call the methods when I push one random button (login, logout, and so on). I also have a class with static variables that are used when necessary. I put variables like facebook ( = new("APP_ID"), AsyncFacebookRunner ..
The problem comes up when I call one of the method in fbConnect, since the authorize method needs (Activity, new DialogListener() {..}) : I guess the problem lies here, because I don't get back any auth token in the login call.
Do you have any ideas?
Thank you