Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.content.Context;
import android.content.SharedPreferences;

public class Main {
    private static final String CONFIG = "config";
    private static final String KEY_ONLY_DESTOP = "only_destop";

    public static boolean isOnlyDestop(Context context) {
        SharedPreferences sp = context.getSharedPreferences(CONFIG, Context.MODE_PRIVATE);
        return sp.getBoolean(KEY_ONLY_DESTOP, false);
    }
}