Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
487 views
in Technique[技术] by (71.8m points)

android - How do I use sharedPreferences outside of an Activity?

I've been stuck on this very simple problem for hours now and Ive been unable to find any suitable solutions through google.

I am trying to use the SharedPreferences class in the model layer of my application. Specifically I want to be able to save or fetch the user name and the corresponding token whenever the application is started(if the user sets the application up for auto login that is).

Is there a way for me to use SharedPreferences for this issue or am I forced into using FileInput/Output ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Where do you instantiate your Model class?

Just pass either a context or the SharedPreferences to the constructor:

public class Model {
    private final Context context;
    private final SharedPreferences sharedPrefs;

    public Model(Context context) {
        this.context = context;
        sharedPrefs = context.getSharedPreferences("name", 0);
    }

    private String doSomething(){
        return sharedPrefs.getString("key", "defValue");
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...