Using Shared Preferences in Android

前端 未结 5 1107
别跟我提以往
别跟我提以往 2021-01-27 05:05

I have three activities, A, B & C. Where A is a splash Activity and B Contains Login screen which consist of user Id and Password Text Field and one button to login. When I

5条回答
  •  有刺的猬
    2021-01-27 05:41

    Write it from Activity A like this:

    SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(this);
                Editor editor = sp.edit();
                editor.putString("YOUR_KEY", "username");
                editor.commit();
    

    You can read it afterwards with:

    SharedPreferences p = PreferenceManager.getDefaultSharedPreferences(this);
            String username = p.getString("YOUR_KEY", null);
    

提交回复
热议问题