Storing data in SharedPreferences accessible to all activities

早过忘川 提交于 2019-12-22 05:32:10

问题


I want to store and retrieve data that is accessible to all activities in my app using SharedPreferences. Is that possible? Up until now I have been doing it such that the data is stored for a particular activity.


回答1:


Yes. SharePreferences do exactly this. In every activity you can this:

SharedPreferences prefs = getSharedPreferences(ApplicationConstants.PREFERENCES, Context.MODE_PRIVATE);
SharedPreferences.Editor editor = prefs.edit();
editor.putString(name, value);
editor.commit();

And then retrieve values in other activty doing this:

mPrefs.getString(name, "");

This is the documentation: http://developer.android.com/reference/android/content/SharedPreferences.html

And this is a good example to start with:

http://myandroidsolutions.blogspot.it/2012/03/android-preferenceactivity.html




回答2:


I have a better version. As sometimes when you try to do getSharedPreferences you might get an error as it could not be found. This is how I store values in my Android projects.

Add

SharedPreferences sharedPreferences=this.getSharedPreferences("packagename", Context.MODE_PRIVATE);

 sharedPreferences.edit().putString("username", "specify name here").apply();

Package Name can be directly copied from top of the activity ex: com.example.name.projectname

Retrieve

String username = sharedPreferences.getString("username","");



回答3:


Yes, that's the whole purpose of it.

Here's how you should write to it, via Editor

    final SharedPreferences shp         = ctx.getSharedPreferences(ctx.getString(R.string.app_name), Context.MODE_PRIVATE);
    final SharedPreferences.Editor ed   = shp.edit(); 
    ed.putString("var1", "var1");
    ed.putString("var2", "var2");

And to load it:

shp.getString("var1", "defvalue");



回答4:


If you want to access values in all of your activities I think the better way is storing in a custom Application class and later in activities you can:

((CustomApplication)getApplication()).getStoredValue()

Shared preferences are stored in files and this file access is slower.




回答5:


Is my example for create function for set and get an object data called "USER"

For set sharePreference data

public void saveUser(User usuario) {
        SharedPreferences sharedPref = getSharedPreferences("A", Context.MODE_PRIVATE); // sharedpreference set named "A"

        SharedPreferences.Editor editor = sharedPref.edit();
        editor.putString("name", usuario.getNombre());
        editor.putString("username", usuario.getUsername());
        editor.putString("pass", usuario.getContrasena());
        editor.putString("roll",usuario.getRol());
        editor.commit();
    }

For get sharePreference data

public Usuario getUser() {
        SharedPreferences sharedPref = getSharedPreferences("A", Context.MODE_PRIVATE);   // sharedpreference set named "A"
        User usuario = new User();
        usuario.setNombre(sharedPref.getString("name", "null"));
        usuario.setUsername(sharedPref.getString("username", "null"));
        usuario.setContrasena(sharedPref.getString("pass", "null"));
        usuario.setRol(sharedPref.getString("roll", "null"));
        return usuario;
    }

Important: set name to sharePreference in this case "A"



来源:https://stackoverflow.com/questions/11264214/storing-data-in-sharedpreferences-accessible-to-all-activities

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!