Back to project page Demo-YouTuBe-Android.
The source code is released under:
Apache License
If you think the Android project Demo-YouTuBe-Android 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.lqg.youtube.support; /* w ww .j ava2 s . c o m*/ import android.app.Application; /** * Created by LQG on 2014/12/4. */ public class GlobalApplication extends Application { static GlobalApplication instance; public static GlobalApplication getInstance() { return instance; } @Override public void onCreate() { instance = this; super.onCreate(); } }