Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import java.util.List;

import android.content.SharedPreferences;

public class Main {
    public static boolean saveList(SharedPreferences prefs, List<String> list, String listName) {
        SharedPreferences.Editor editor = prefs.edit();
        editor.putInt(listName + "_size", list.size());
        int i = 0;
        for (String s : list) {
            editor.putString(listName + "_" + i, s);
            ++i;
        }
        return editor.commit();
    }
}