Created
November 23, 2017 13:47
-
-
Save staakk/7b9d2b3beb2d6801a6361793e0fb1acd to your computer and use it in GitHub Desktop.
Factory which allows ViewModels to be injected by Dagger2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Singleton | |
public class ViewModelFactory implements ViewModelProvider.Factory { | |
private final Map<Class<? extends ViewModel>, Provider<ViewModel>> creators; | |
@Inject | |
public ViewModelFactory(Map<Class<? extends ViewModel>, Provider<ViewModel>> creators) { | |
this.creators = creators; | |
} | |
@SuppressWarnings("unchecked") | |
@Override | |
public <T extends ViewModel> T create(Class<T> modelClass) { | |
Provider<? extends ViewModel> creator = creators.get(modelClass); | |
if (creator == null) { | |
for (Map.Entry<Class<? extends ViewModel>, Provider<ViewModel>> entry : creators.entrySet()) { | |
if (modelClass.isAssignableFrom(entry.getKey())) { | |
creator = entry.getValue(); | |
break; | |
} | |
} | |
} | |
if (creator == null) { | |
throw new IllegalArgumentException("unknown model class " + modelClass); | |
} | |
try { | |
return (T) creator.get(); | |
} catch (Exception e) { | |
throw new RuntimeException(e); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment