2012-04-03 18:58:01 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
package org.mozilla.gecko;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
import android.app.Activity;
|
|
|
|
import android.app.Application;
|
|
|
|
|
|
|
|
public class GeckoApplication extends Application {
|
|
|
|
|
2012-05-08 23:40:12 +00:00
|
|
|
private boolean mInBackground = false;
|
2012-04-03 18:58:01 +00:00
|
|
|
private ArrayList<ApplicationLifecycleCallbacks> mListeners;
|
|
|
|
|
|
|
|
public interface ApplicationLifecycleCallbacks {
|
|
|
|
public void onApplicationPause();
|
|
|
|
public void onApplicationResume();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addApplicationLifecycleCallbacks(ApplicationLifecycleCallbacks callback) {
|
|
|
|
if (mListeners == null)
|
|
|
|
mListeners = new ArrayList<ApplicationLifecycleCallbacks>();
|
|
|
|
|
|
|
|
mListeners.add(callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void removeApplicationLifecycleCallbacks(ApplicationLifecycleCallbacks callback) {
|
|
|
|
if (mListeners == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mListeners.remove(callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onActivityPause(GeckoActivity activity) {
|
2012-05-08 23:40:12 +00:00
|
|
|
if (activity.isGeckoActivityOpened())
|
2012-04-03 18:58:01 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (mListeners == null)
|
|
|
|
return;
|
|
|
|
|
2012-05-08 23:40:12 +00:00
|
|
|
mInBackground = true;
|
|
|
|
|
2012-04-03 18:58:01 +00:00
|
|
|
for (ApplicationLifecycleCallbacks listener: mListeners)
|
|
|
|
listener.onApplicationPause();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onActivityResume(GeckoActivity activity) {
|
2012-05-08 23:40:12 +00:00
|
|
|
// This is a misnomer. Should have been "wasGeckoActivityOpened".
|
|
|
|
if (activity.isGeckoActivityOpened())
|
2012-04-03 18:58:01 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (mListeners == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (ApplicationLifecycleCallbacks listener: mListeners)
|
|
|
|
listener.onApplicationResume();
|
2012-05-08 23:40:12 +00:00
|
|
|
|
|
|
|
mInBackground = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isApplicationInBackground() {
|
|
|
|
return mInBackground;
|
2012-04-03 18:58:01 +00:00
|
|
|
}
|
|
|
|
}
|