Use Shared Preferencesinside a Fragment; see below.
First write to SharedPreferences:
SharedPreferences pref = getActivity().getPreferences(Context.MODE_PRIVATE);
SharedPreferences.Editor edt = pref.edit();
edt.putString("facebook_id", id);
edt.commit();
Here id is a string containing the Facebook id you have, and 0 indicates private_mode.
-, Facebook, SharedPreference, Fragment:
SharedPreferences pref = getActivity().getPreferences(Context.MODE_PRIVATE);
String id = pref.getString("facebook_id", "empty");
, facebook_id null SharedPreference.