read Long from SharedPreferences - Android Android OS

Android examples for Android OS:SharedPreferences

Description

read Long from SharedPreferences

Demo Code


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

public class Main {
    public static final String PREF_NAME = "FILTER_PREFERENCES";
    public static final int MODE = Context.MODE_PRIVATE;

    public static long readLong(Context context, String key, long defValue) {
        return getPreferences(context).getLong(key, defValue);
    }//from   w  w  w .  java 2 s .  c  o m

    public static SharedPreferences getPreferences(Context context) {
        return context.getSharedPreferences(PREF_NAME, MODE);
    }
}

Related Tutorials