Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.SharedPreferences;

public class Main {
    private static SharedPreferences sp = null;

    public static Float getFloat(String key) {
        return Float.valueOf(sp.getFloat(key, -1));
    }

    public static Float getFloat(String key, float defVal) {
        return Float.valueOf(sp.getFloat(key, defVal));
    }
}