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;
import android.content.SharedPreferences.Editor;

import android.preference.PreferenceManager;

public class Main {
    private static final String PREF_LAST_FORUM_PAGE_SAVED = "PREF_LAST_FORUM_PAGE_SAVED";

    public static void setLastForumPageSaved(Context context, int forumPageNum) {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
        Editor edit = prefs.edit();
        edit.putInt(PREF_LAST_FORUM_PAGE_SAVED, forumPageNum);
        edit.commit();
    }
}