Dear Friends I want to clear my shared preference I have tried this
SharedPreferences pref = getActivity().getSharedPreferences(
"mypassword", getActivity().MODE_PRIVATE);
Editor editor = pref.edit();
editor.putString("key_username", "");
editor.putString("key_password", "");
editor.commit();
but its not working.How can I clear please help me.