Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.util.HashMap;
import java.util.Map;
import android.content.SharedPreferences;

public class Main {

    public static Map<String, String> getData(SharedPreferences sp, String[] keys) {
        Map<String, String> map = new HashMap<String, String>();
        for (String key : keys) {
            map.put(key, sp.getString(key, ""));
        }
        return map;
    }
}