Back to project page final_year_frontend.
The source code is released under:
MIT License
If you think the Android project final_year_frontend 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.james.erebus.misc; /*from w w w .j a va2s .c o m*/ import android.app.Activity; /** * Helper class purely to hold a reference to the current {@link android.app.Activity} on the screen. * This is updated through the onResume() method of every activity, which has been overriden * @author james * */ public class AppConsts { public static Activity currentActivity = null; }