Newer
Older
MathsCalc / app / src / main / java / me / bello / mathscalc / BelloApp.java
bello on 13 Nov 2018 433 bytes 增加积分
package me.bello.mathscalc;

import android.app.Application;
import android.content.Context;

/**
 * @Info
 * @Auth Bello
 * @Time 2018/11/13 20:56
 * @Ver
 */
public class BelloApp extends Application{

    public static Context context;

    @Override
    public void onCreate() {
        super.onCreate();
        context = getApplicationContext();
    }

    public static Context getContext(){
        return context;
    }


}