Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.app.Activity;

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

public class Main {
    public static boolean getCreateIcon(Context context) {
        try {
            SharedPreferences sharedPreferences = context.getSharedPreferences("com.cmmobi.icuiniao.firstrun",
                    Activity.MODE_PRIVATE);
            return sharedPreferences.getBoolean("create", false);
        } catch (Exception e) {
        }
        return false;
    }
}