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 static SharedPreferences addressPreferences = null;
    private static final String ADDRESS_PREFERENCE = "ADDRESS_PREFERENCE";
    private static final String HOME_ADDRESS = "HOME_ADDRESS";

    public static String getHome(Context context) {

        addressPreferences = context.getSharedPreferences(ADDRESS_PREFERENCE, Context.MODE_APPEND);

        return addressPreferences.getString(HOME_ADDRESS, "");
    }
}