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 final String SHARED_PREFERENCES_NAME = "SwipeRefreshLayoutDemoPreferences";

    public static String getSystemValue(String key, Context p_context) {
        String value = null;
        SharedPreferences myPrefs = p_context.getSharedPreferences(SHARED_PREFERENCES_NAME, Context.MODE_PRIVATE);
        value = myPrefs.getString(key, null);

        return value;
    }
}