Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

'SharedPreferencesUtils()' has private access in 'com.google.android.gms.common.util.SharedPreferencesUtils

why i am getting this error. I am trying to create session management for signup and login activity.

I got error in this line " pref = new SharedPreferencesUtils(context); "

help me to correct it.

here is my code -

import android.content.Context;
import android.content.SharedPreferences;

import com.google.android.gms.common.util.SharedPreferencesUtils;

public class SessionManagement {

    SharedPreferencesUtils pref;
    Context context;

    public SessionManagement(Context context) {
        this.context = context;
        pref = new SharedPreferencesUtils(context);

    }

    public void createLoginSession(String s, String s1, String s2, String s3, String s4, boolean b) {
    }
}

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

1 Reply

0 votes
by (71.8m points)

This is sample of code from my project , follow these step :

  • Create function that will store the data
 // Call this function where you want to save your data

 private void storeCredentials(String email , String password) {
        SharedPreferences credentialsPrefs = getSharedPreferences("prefs", Context.MODE_PRIVATE);
        SharedPreferences.Editor editor = credentialsPrefs.edit();
        editor.putString("email",email);
        editor.putString("password",password);
        editor.apply();
    }
  • Then Call your preferences where you have your edittexts to set data
  SharedPreferences credentialsPrefs = getSharedPreferences("prefs", Context.MODE_PRIVATE);
        String email  = credentialsPrefs.getString("email","default-value");
        String password = credentialsPrefs.getString("password","default-       value");

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...