roboguice.activity.RoboActivityGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of roboguice Show documentation
Show all versions of roboguice Show documentation
A framework for using Google Guice dependency injection in Android.
/*
* Copyright 2009 Michael Burton
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions
* and limitations under the License.
*/
package roboguice.activity;
import java.util.HashMap;
import java.util.Map;
import roboguice.RoboGuice;
import roboguice.activity.event.OnActivityResultEvent;
import roboguice.activity.event.OnContentChangedEvent;
import roboguice.activity.event.OnNewIntentEvent;
import roboguice.activity.event.OnPauseEvent;
import roboguice.activity.event.OnRestartEvent;
import roboguice.activity.event.OnResumeEvent;
import roboguice.activity.event.OnSaveInstanceStateEvent;
import roboguice.activity.event.OnStopEvent;
import roboguice.context.event.OnConfigurationChangedEvent;
import roboguice.context.event.OnCreateEvent;
import roboguice.context.event.OnDestroyEvent;
import roboguice.context.event.OnStartEvent;
import roboguice.event.EventManager;
import roboguice.inject.ContentViewListener;
import roboguice.inject.RoboInjector;
import roboguice.util.RoboContext;
import com.google.inject.Inject;
import com.google.inject.Key;
import android.annotation.TargetApi;
import android.app.Activity;
import android.app.ActivityGroup;
import android.content.Context;
import android.content.Intent;
import android.content.res.Configuration;
import android.os.Build;
import android.os.Bundle;
import android.util.AttributeSet;
import android.view.View;
/**
* A {@link RoboActivityGroup} extends from {@link ActivityGroup} to provide
* dynamic injection of collaborators, using Google Guice.
*
* @see RoboActivity
*
* @author Toly Pochkin
*/
@Deprecated
public class RoboActivityGroup extends ActivityGroup implements RoboContext {
protected EventManager eventManager;
protected HashMap,Object> scopedObjects = new HashMap, Object>();
@Inject ContentViewListener ignored; // BUG find a better place to put this
@Override
@Deprecated
protected void onCreate(Bundle savedInstanceState) {
final RoboInjector injector = RoboGuice.getInjector(this);
eventManager = injector.getInstance(EventManager.class);
injector.injectMembersWithoutViews(this);
super.onCreate(savedInstanceState);
eventManager.fire(new OnCreateEvent(this,savedInstanceState));
}
@Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
eventManager.fire(new OnSaveInstanceStateEvent(this, outState));
}
@Override
@Deprecated
protected void onRestart() {
super.onRestart();
eventManager.fire(new OnRestartEvent(this));
}
@Override
@Deprecated
protected void onStart() {
super.onStart();
eventManager.fire(new OnStartEvent(this));
}
@Override
@Deprecated
protected void onResume() {
super.onResume();
eventManager.fire(new OnResumeEvent(this));
}
@Override
@Deprecated
protected void onPause() {
super.onPause();
eventManager.fire(new OnPauseEvent(this));
}
@Override
@Deprecated
protected void onNewIntent( Intent intent ) {
super.onNewIntent(intent);
eventManager.fire(new OnNewIntentEvent(this));
}
@Override
@Deprecated
protected void onStop() {
try {
eventManager.fire(new OnStopEvent(this));
} finally {
super.onStop();
}
}
@Override
@Deprecated
protected void onDestroy() {
try {
eventManager.fire(new OnDestroyEvent(this));
} finally {
try {
RoboGuice.destroyInjector(this);
} finally {
super.onDestroy();
}
}
}
@Override
@Deprecated
public void onConfigurationChanged(Configuration newConfig) {
final Configuration currentConfig = getResources().getConfiguration();
super.onConfigurationChanged(newConfig);
eventManager.fire(new OnConfigurationChangedEvent(this,currentConfig, newConfig));
}
@Override
@Deprecated
public void onContentChanged() {
super.onContentChanged();
RoboGuice.getInjector(this).injectViewMembers(this);
eventManager.fire(new OnContentChangedEvent(this));
}
@Override
@Deprecated
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
eventManager.fire(new OnActivityResultEvent(this, requestCode, resultCode, data));
}
@Override
public Map, Object> getScopedObjectMap() {
return scopedObjects;
}
@Override
public View onCreateView(String name, Context context, AttributeSet attrs) {
if (RoboActivity.shouldInjectOnCreateView(name))
return RoboActivity.injectOnCreateView(name, context, attrs);
return super.onCreateView(name, context, attrs);
}
@Override
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public View onCreateView(View parent, String name, Context context, AttributeSet attrs) {
if (RoboActivity.shouldInjectOnCreateView(name))
return RoboActivity.injectOnCreateView(name, context, attrs);
return super.onCreateView(parent, name, context, attrs);
}
}