Back to project page wpaper.
The source code is released under:
MIT License
If you think the Android project wpaper 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.example.uniwall; /*from ww w .ja v a 2 s . c om*/ import android.app.Application; import android.content.Context; public class MainApplication extends Application { /** * ??????. */ private static Context mContext; @Override public void onCreate() { super.onCreate(); mContext = getApplicationContext(); } /**????Context. * @return */ public static Context getContext(){ return mContext; } @Override public void onLowMemory() { super.onLowMemory(); } }