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 String KEY_SHOW_MAP_HINT = "show_map_hint";

    public static boolean isMapHintVisible(Context context) {
        SharedPreferences sharedPref = context.getSharedPreferences(KEY_SHOW_MAP_HINT, Context.MODE_PRIVATE);
        return sharedPref.getBoolean(KEY_SHOW_MAP_HINT, true);
    }
}