我试图实现MVVM arch,所以我有我的Activity和ViewModel,ViewModel有一个Interactor引用,它被注入ViewModel,但在Interactor中我需要活动上下文,所以我在那里引用它。 / p>
我已阅读此警告in the docs:"Caution: A ViewModel must never reference a view, Lifecycle, or any class that may hold a reference to the activity context."
通过这种方法,来自doc的警告被忽略了......
这是正确的方法吗?
由于