forked from androidannotations/androidannotations
-
Notifications
You must be signed in to change notification settings - Fork 0
Enhancing the Application class
pyricau edited this page Feb 28, 2013
·
8 revisions
Since AndroidAnnotations 2.4
You can enhance your Android Application class with the @EApplication annotation:
@EApplication
public class MyApplication extends Application {
}You can then start using most AA annotations, except the ones related to views and extras:
@EApplication
public class MyApplication extends Application {
public void onCreate() {
super.onCreate();
initSomeStuff();
}
@SystemService
NotificationManager notificationManager;
@Bean
MyEnhancedDatastore datastore;
@RestService
MyService myService;
@Background
void initSomeStuff() {
// init some stuff in background
}
}Since AndroidAnnotations 2.1
You can inject the application class using the @App annotation:
@EActivity
public class MyActivity extends Activity {
@App
MyApplication application;
}It also works for any kind of annotated component, such as @EBean:
@EBean
public class MyBean {
@App
MyApplication application;
}Since AndroidAnnotations 3.0, the application class must be annotated with
@EApplication.
AndroidAnnotations was created by Pierre-Yves Ricau and is sponsored by eBusinessInformations.
04/03/2013 The 2.7.1 release is out
- Get started!
- Download
- Cookbook, full of recipes
- List of all available annotations
- Release Notes
- Examples
- Read the FAQ
- Join the Mailing list
- Create an issue
- Tag on Stack Overflow