Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.Context;
import android.content.SharedPreferences;

public class Main {
    private final static String PREFERENCES = "map";
    private final static String COLOR = "color";

    public static void saveColor(Context context, int color) {
        SharedPreferences settings = context.getSharedPreferences(PREFERENCES, 0);
        settings.edit().putInt(COLOR, color).commit();
    }
}