You can inject any type of resource, Strings, Animations, Drawables, etc.
To inject your first resource into an activity, you'll need to:
Inherit from RoboActivity
Annotate your resources with @InjectResource
Example
@InjectResource(R.string.app_name) String name;
@InjectResource(R.drawa...