Jetpack 中的视图模型是否与 MVVM 架构中的视图模型相同?
Is View model in jetpack is same as view model in MVVM architecture?
我是 MVVM 架构的菜鸟,我喜欢在这种架构中开发我未来的项目。如果我在我的项目中添加并实现 Android Jetpack Viewmodel class 并正确使用它们,它会出现在 MVVM 架构中吗?或者 MVVM 的视图模型有区别吗?
Android 架构组件 (AAC) 是 Android Jetpack 的一部分,是一组库,可帮助您设计 MVVM 风格的应用程序。
实现真正的MVVM implementation, you can use the combination of AAC (such as ViewModel
, LiveData
and Room
) with Data Binding.
有关详细信息,请阅读 this article。
我是 MVVM 架构的菜鸟,我喜欢在这种架构中开发我未来的项目。如果我在我的项目中添加并实现 Android Jetpack Viewmodel class 并正确使用它们,它会出现在 MVVM 架构中吗?或者 MVVM 的视图模型有区别吗?
Android 架构组件 (AAC) 是 Android Jetpack 的一部分,是一组库,可帮助您设计 MVVM 风格的应用程序。
实现真正的MVVM implementation, you can use the combination of AAC (such as ViewModel
, LiveData
and Room
) with Data Binding.
有关详细信息,请阅读 this article。