How are you getting your gmail account address? AccountManager.getAccountsByType("com.google")? If you are getting your gmail account, you can also get your facebook account via the AccountManager class if it is on the device, just change your code to:
Account[] accounts = AccountManager.get(this).getAccounts();
for (Account account: accounts) {
String accountEmail = account.name;
}
And then debug. If your facebook account is listed under the synced accounts on the device, (Menu > Settings > Accounts & Sync) it should appear in this Account array. You could then restrict the method to use AccountManager's getAccountsByType method, which will accept whatever type the facebook account is as a String value (probably something like "com.facebook") to retrieve your facebook account ID.