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 {
    public static final String positionKey = "positionKey";

    public static int loadListPosition(Context context, String settings) {
        SharedPreferences pSharedPref = context.getSharedPreferences(settings, Context.MODE_PRIVATE);
        if (pSharedPref != null) {
            return pSharedPref.getInt(positionKey, 0);
        } else
            return 0;
    }
}