How to use SharedPreferences to save more than one values?

前端 未结 6 1555
慢半拍i
慢半拍i 2020-11-29 08:03

I am developing a dictionary app. In my app, I assume that user wants to save favourite words. I have decided to use SharedPreferences to save these values

相关标签:
6条回答
  • 2020-11-29 08:12

    Well that's because the actual preference storage is not a List of strings, just a single one, so whenever you say putString() you overwrite the previous value. A good way to store multiple objects in a single preference string is to use JSON. Simply serialize the value and then write it to them. It also has the benefit of converting directly back into an object of whatever complexity you wish. Look into using Jackson if you decide to go on this route.

    0 讨论(0)
  • 2020-11-29 08:12

    You could use a TreeMap (or other type of list which implements Serializable). Here's how I handled a list of favourites recently. In the TreeMap, Favourite is a class I use. In your case, you could just use TreeMap<Integer, String> instead.

    private static TreeMap<Integer, Favourite> favourites;
    
    ...
    ...
    ...
    
    // load favourites
    FileInputStream fis=null;
    ObjectInputStream ois = null;
    try {
        fis = context.openFileInput(context.getString(R.string.favourites_file));
        try {
        ois = new ObjectInputStream(fis);
        favourites = (TreeMap<Integer, Favourite>) ois.readObject();
        } catch (StreamCorruptedException e) {
        } catch (IOException e) {
        } catch (ClassNotFoundException e) {
        }
    } catch (FileNotFoundException e) {
    } finally {
        try {
        if (ois!=null){
            ois.close();
        }
        } catch (IOException e) {
        }    
    }
    
    if (favourites==null){
        favourites = new TreeMap<Integer, Favourite>();     
    }
    
    ...
    ...
    ...
    
    // save favourites
    FileOutputStream fos=null;
    ObjectOutputStream oos=null;
    try {
        fos = context.openFileOutput(context.getString(R.string.favourites_file), MODE_PRIVATE);
        try {
        oos = new ObjectOutputStream(fos);
        oos.writeObject(favourites);
        } catch (IOException e) {
        }
    } catch (FileNotFoundException e) {
    } finally {
        if (oos!=null){
        try {
            oos.close();
        } catch (Exception e2) {
    
        }
        }    
    }
    

    You can also avoid the "::" thing you're doing to separate values.

    Hope that helps...

    0 讨论(0)
  • 2020-11-29 08:21

    SharedPreferences work via simple key/value so when you provide a new value for the same key, the previous value is overwritten. The only way to do what you're trying to do is to use different keys, which sort of hints towards the fact that you probably shouldn't be using SharedPreferences for what you're trying to do.

    0 讨论(0)
  • 2020-11-29 08:30

    Honeycomb added the putStringSet method, so you could use that if you don't have to support anything less than Honeycomb:

    @Override
    public void onClick(View v) {
        SharedPreferences faves = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
        {
            Set<String> faveSet = faves.getStringSet("favourite");
            faveSet.add(mSelectedDB + "::" + mCurrentWordId + "::" + mCurrentWord + ",");
            SharedPreferences.Editor editor = faves.edit();
            editor.putStringSet("favourite", faveSet);
            editor.commit();
        }
        Log.i(CONTENT_TAG,"Favourite saved!");
    
        Toast toast = Toast.makeText(ContentView.this, R.string.messageWordAddedToFarvourite, Toast.LENGTH_SHORT);
        toast.show();
    }
    

    If you need support for pre-Honeycomb devices, you will have to come up with your own scheme.

    One possibility is to store the words as comma-separated values in one preference.

    Another is to generate a new key for each new word, "favourite1", "favourite2", "favourite3" and have another preference you use to store the number of words.

    0 讨论(0)
  • 2020-11-29 08:31

    Every time you click the button you save the favorite word with the already present key: favorite and you override it. To save more than one word you have to save the words with different keys. So every time you save a favorite word you could do:

    private static int incrementedValue = 0;
    ...
    @Override
    public void onClick(View v) {
        SharedPreferences faves = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
    
        SharedPreferences.Editor editor = faves.edit();
        editor.putString("favourite" + incrementedValue, mSelectedDB + "::" + mCurrentWordId + "::" + mCurrentWord + ",");
        editor.commit();
    
        Log.i(CONTENT_TAG,"Favourite saved!");
    
        Toast toast = Toast.makeText(ContentView.this, R.string.messageWordAddedToFarvourite, Toast.LENGTH_SHORT);
        toast.show();
        incrementedValue++;
    }
    
    0 讨论(0)
  • You can save multiple favorites in a single preference by adding numerous favorites in a single string, each favorite item separated by comma. Then you can use convertStringToArray method to convert it into String Array. Here is the full source code.
    Use MyUtility Methods to save multiple favorite items.

                MyUtility.addFavoriteItem(this, "Sports");
                MyUtility.addFavoriteItem(this, "Entertainment");
    

    get String array of all favorites saved

    String[] favorites = MyUtility.getFavoriteList(this);// returns {"Sports","Entertainment"};
    

    Save these methods in separate Utility class

     public abstract class MyUtility {
    
        public static boolean addFavoriteItem(Activity activity,String favoriteItem){
            //Get previous favorite items
            String favoriteList = getStringFromPreferences(activity,null,"favorites");
            // Append new Favorite item
            if(favoriteList!=null){
                favoriteList = favoriteList+","+favoriteItem;
            }else{
                favoriteList = favoriteItem;
            }
            // Save in Shared Preferences
            return putStringInPreferences(activity,favoriteList,"favorites");
        }
        public static String[] getFavoriteList(Activity activity){
            String favoriteList = getStringFromPreferences(activity,null,"favorites");
            return convertStringToArray(favoriteList);
        }
        private static boolean putStringInPreferences(Activity activity,String nick,String key){
            SharedPreferences sharedPreferences = activity.getPreferences(Activity.MODE_PRIVATE);
            SharedPreferences.Editor editor = sharedPreferences.edit();
            editor.putString(key, nick);
            editor.commit();                        
            return true;        
        }
        private static String getStringFromPreferences(Activity activity,String defaultValue,String key){
            SharedPreferences sharedPreferences = activity.getPreferences(Activity.MODE_PRIVATE);
            String temp = sharedPreferences.getString(key, defaultValue);
            return temp;        
        }
    
        private static String[] convertStringToArray(String str){
            String[] arr = str.split(",");
            return arr;
        }
    }
    

    If you have to add extra favorites. Then get favorite string from SharedPreference and append comma+favorite item and save it back into SharedPreference.
    * You can use any other string for separator instead of comma.

    0 讨论(0)
提交回复
热议问题