Back to project page Alfred4Android.
The source code is released under:
Apache License
If you think the Android project Alfred4Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.toraleap.collimator; /* w ww.j a v a 2 s . c om*/ import android.app.Application; /** * Created by Adward on 14/12/10. */ public class GlobalContext extends Application { private static GlobalContext instance; public static GlobalContext getInstance() { return instance; } @Override public void onCreate() { // TODO Auto-generated method stub super.onCreate(); instance = this; } }