Как я могу очистить общие настройки от фрагмента? СпасибоКак очистить общие настройки от фрагмента?
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
sharedPreferences = getActivity().getSharedPreferences("login.conf", Context.MODE_PRIVATE);
editor = sharedPreferences.edit();
editor.clear();
editor.commit();
Intent logout = new Intent(getActivity(), LoginActivity.class);
startActivity(logout);
Log.d(TAG, sharedPreferences.getString("username", ""));
Log.d(TAG, sharedPreferences.getString("password", ""));
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_fragment_logout, container, false);
}
, что мой фрагментировать
Что вы хотите достичь? –
Я хочу получить общие настройки из активности, а затем удалить из фрагмента, возможно ли это? –
В чем проблема с текущим кодом? – rafsanahmad007