Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.Context;

public class Main {
    private static Context mContext;

    public static Context getInstance() {
        if (mContext == null) {
            throw new NullPointerException("context is null in appcontxtutils,please init");
        }
        return mContext;

    }
}