I have an app which is basically a service that runs all the time and alarms the user when something happens.
When the service creates the alarm, it needs to give it his context
so that the alarm can do callbacks to the service when something happens.
For example:
public MyService extends Service{ private SomeAlarm alarm; @Override public void onCreate() { super.onCreate(); alarm = new SomeAlarm(MyService.this); } }
How can I inject the SomeAlarm
class into the service, and give the SomeAlarm
the service context as a variable?
To inject an object in the activity, you'd use the appComponent defined in your Application class and call the inject() method, passing in an instance of the activity that requests injection. When using activities, inject Dagger in the activity's onCreate() method before calling super.
Declaring Dependencies Inject annotation to identify which constructors and fields it is interested in. Use @Inject to annotate the constructor that Dagger should use to create instances of a class.
Inject values at runtime with UI in Dagger2:pureMathModule("Book Name") . build() . inject(this); The difference between DaggerComponent create() and in build() is - create() works when no runtime argument is passed into the constructor, else we use build() method.
I wrote the code from the top of my head, so there could be a typo or two.
You do it just the same as when injecting stuff into activities.
Your module and component would look something like this (maybe add some scope)
@Module class ServiceModule { MyService mService; ServiceModule(MyService service) { mService = service; } @Provides MyService provideMyService() { return mService; } } @Component(modules=ServiceModule.class) interface MyServiceComponent { void inject(MyService service); }
Then in onCreate
just create your component and inject your alarm.
@Inject private SomeAlarm alarm; public void onCreate() { DaggerMyServiceComponent.builder() .serviceModule(new ServiceModule(this)) .build() .inject(this); alarm.doStuff(); }
This is assuming that your alarm can be constructor injected by having an @Inject
annotated constructor like this:
class SomeAlarm { @Inject SomeAlarm(MyService service) { /*constructor stuff*/ } }
Else you would just also add the alarm creation to your module.
I know this question already has an answer but there are an other way to do this
first make your application extend HasServiceInjector
like this:
public class App extends Application implements HasActivityInjector, HasServiceInjector { @Inject DispatchingAndroidInjector<Activity> dispatchingActivityInjector; @Inject DispatchingAndroidInjector<Service> dispatchingServiceInjector; @Override public void onCreate() { super.onCreate(); AppInjector.init(this); } @Override public AndroidInjector<Activity> activityInjector() { return dispatchingActivityInjector; } @Override public AndroidInjector<Service> serviceInjector() { return dispatchingServiceInjector; } }
then create a ServiceBuilderModule
this will perform injection over services:
@Module abstract class ServiceBuilderModule { @ContributesAndroidInjector abstract MyService contributeMyService(); }
then register the new module to your component
@Component(modules = { AndroidSupportInjectionModule.class, AppModule.class, ActivityBuilderModule.class, ServiceBuilderModule.class }) @Singleton public interface AppComponent { @Component.Builder interface Builder { @BindsInstance Builder application(App application); AppComponent build(); } void inject(App app); }
then override the onCreate
method of your service and add AndroidInjection.inject(this)
like below code :
public class MyService extends Service { @Override public void onCreate() { AndroidInjection.inject(this); super.onCreate(); } @Nullable @Override public IBinder onBind(Intent intent) { return null; } }
code in kotlin
is exact conversion of the code above. hope this helps some coders from now on.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With