I have a SettingsActivity where there are several options including finding Facebook friends and logging out. So when a user chooses to find her Facebook friend
SettingsActivity
Using Facebook SDK v4 you can do the following:
if (AccessToken.getCurrentAccessToken() != null) { LoginManager.getInstance().logOut(); }
You can take a look at the LoginManager class.