其他分享
首页 > 其他分享> > 2.0.Architecture components架构组件

2.0.Architecture components架构组件

作者:互联网

参考

https://developer.android.com/topic/libraries/architecture/

Architecture架构组件

架构组件是Jeppack中的一组支持库,主要用于帮助开发者构建一个健壮的架构。

Data Binding

Declaratively bind observable data to UI elements

Lifecycles

Manage your activity and fragment lifecycles

LiveData

Notify views when underlying database changes

Navigation

Handle everything needed for in-app navigation

Paging

Gradually load information on demand from your data source

根据需要逐步从数据源加载信息,分页加载

Room

Fluent SQLite database access

ViewModel

Manage UI-related data in a lifecycle-conscious way

WorkManager

Manage your Android background jobs

后台任务工具。由于Android新版和老版对后台任务的限制不一样,WorkManager主要就是对不同版本对后台任务的处理方法进行封装,当然我们可以自己针对不同版本写不同的代码。

标签:架构,UI,Architecture,components,组件,后台任务,2.0,data,your
来源: https://www.cnblogs.com/muouren/p/12368135.html