i\'m new on android - facebook integration.
I\'m trying to integrate my app with facebook, so i follow all the steps on the facebook tutorial, and things work fine (at le
Facebook remove session in new SDK. check my answer for same question
there full integration code is given by me.
you can check whether user is logged in or not by this code.
profile = Profile.getCurrentProfile().getCurrentProfile();
if (profile != null) {
// user has logged in
} else {
// user has not logged in
}