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 PREFERENCES_FIRST_IN = "app_first_in";
    public static final String KEY_FIRST_FULL_SCREEN = "is_first_full_screen";

    public static void setFirstFullScreen(Context ctt, boolean first) {
        if (ctt != null) {
            SharedPreferences sp = ctt.getSharedPreferences(PREFERENCES_FIRST_IN, Context.MODE_PRIVATE);
            sp.edit().putBoolean(KEY_FIRST_FULL_SCREEN, first).commit();
        }
    }
}