Facebook logout is not Working

Facebook logout is not Working

I am working in Android app with Facebook integration but I am getting
issue as whenever I try to logout the Facebook is not getting completely
logout,
I searched a lot and finally I have used the code as follows:
public Facebook mFacebook = new Facebook(APP_ID);
SessionStore.clear(logoutActivity.this);
try {
mFacebook.logout(logoutActivity.this);
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
I tried the above code but not at all working,the Facebook is not getting
complete logout. Could somebody help me out??