Back to project page Common-Library.
The source code is released under:
Apache License
If you think the Android project Common-Library 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.morgan.library.app; /*from ww w .j a va 2 s.c o m*/ import android.os.Bundle; import android.support.v4.app.FragmentActivity; /** * ?????FragmentActivity??????????????AppManager????????????? * * @author Morgan.Ji * * @version 1.0 * * @date 2014-7-15 */ public class BaseFragmentActivity extends FragmentActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // ?????Activity???? AppManager.getInstance().addActivity(this); } @Override protected void onDestroy() { // ??????Activity?????? AppManager.getInstance().removeActivity(this); super.onDestroy(); } }