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_LATEST_FORUM_POST = "PREF_LATEST_FORUM_POST";

    public static void setLatestForumPostSaved(Context context, String forumPostUrl) {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
        Editor edit = prefs.edit();
        edit.putString(PREF_LATEST_FORUM_POST, forumPostUrl);
        edit.commit();
    }
}