dagger.android.support.FragmentKey Java Examples
The following examples show how to use
dagger.android.support.FragmentKey.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: FragmentBuildersModule.java From tv-samples with Apache License 2.0 | 4 votes |
@Binds @IntoMap @FragmentKey(LiveDataFragment.class) abstract AndroidInjector.Factory<? extends Fragment> bindFragmentInjectorFactory( LiveDataOverviewFragmentSubComponent.Builder builder);
Example #2
Source File: FragmentSupportModule.java From android-auto-call-recorder with MIT License | 4 votes |
@Binds @IntoMap @FragmentKey(RecordsFragment.class) abstract AndroidInjector.Factory<? extends Fragment> bindRecordsFragmentInjectorFactory(RecordsFragmentSubcomponent.Builder builder);
Example #3
Source File: FragmentSupportModule.java From android-auto-call-recorder with MIT License | 4 votes |
@Binds @IntoMap @FragmentKey(RecordsDialog.class) abstract AndroidInjector.Factory<? extends Fragment> bindRecordsDialogInjectorFactory(RecordsDialogSubcomponent.Builder builder);
Example #4
Source File: FragmentSupportModule.java From android-auto-call-recorder with MIT License | 4 votes |
@Binds @IntoMap @FragmentKey(SortDialog.class) abstract AndroidInjector.Factory<? extends Fragment> bindSortDialogInjectorFactory(SortDialogSubcomponent.Builder builder);
Example #5
Source File: FragmentBuildersModule.java From leanback-showcase with Apache License 2.0 | 4 votes |
@Binds @IntoMap @FragmentKey(LiveDataFragment.class) abstract AndroidInjector.Factory<? extends Fragment> bindFragmentInjectorFactory( LiveDataOverviewFragmentSubComponent.Builder builder);
Example #6
Source File: MainActivityComponent.java From rootvalidator with GNU General Public License v3.0 | 4 votes |
@Binds @IntoMap @FragmentKey(ValidatorFragment.class) abstract Factory<? extends Fragment> volumes(ValidatorComponent.Builder impl);