forked from androidannotations/androidannotations
-
Notifications
You must be signed in to change notification settings - Fork 0
SystemServices
pyricau edited this page Jan 10, 2012
·
7 revisions
Since AndroidAnnotations 1.0
The @SystemService annotation indicates that an activity field should be injected with the corresponding Android System service. It is the same as calling the getSystemService method.
The field type is used to determine which system service should be injected. The field must not be private.
Usage example:
@SystemService
NotificationManager notificationManager;Equivalent boilerplate code:
NotificationManager notificationManager;
@Override
public void onCreate(Bundle savedInstanceState) {
[...]
notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
}14/06/2012 The 2.6 release is out
- Get started!
- 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