AssemblyAdapter 是 Android 上的一个为各种 Adapter 提供开箱即用实现的库。
Item 复用
. 只需为你的 item 写一个 ItemFactory,然后就可以到处使用了. 了解更多支持多类型
. 只需给 Adapter 添加多个 ItemFactory 即可轻松实现多类型 Adapter支持全部 Adapter
. 支持 BaseAdapter、RecyclerView.Adapter 等常用 Adapter. 了解更多更多 ConcatAdapter 支持
. 为 BaseAdapter 等更多 Adapter 提供了 Concat 支持. 了解更多支持 Paging
. 为 Paging 提供了多类型支持. 了解更多支持 ViewPager 和 ViewPager2
. 为 ViewPager 和 ViewPager2 提供了多类型及 Paging 分页支持. 了解更多支持 spanSize 和 fullSpan
. 提供了专用的 LayoutManager,可以根据 ItemFactory 设置 spanSize 和 fullSpan. 了解更多支持 divider
. 为 RecyclerView 提供了强大的 divider 支持,还可以根据 position/spanIndex/ItemFactory 个性化或禁用 divider. 了解更多支持占位符 Placeholder
. 通过固定的占位符数据类型支持占位符. 了解更多
该库已发布到 mavenCentral
你可以直接导入所有模块,如下:
dependencies {
implementation("io.github.panpf.assemblyadapter4:assemblyadapter:${LAST_VERSION}")
}
你还可以按需导入所需模块,如下:
dependencies {
implementation("io.github.panpf.assemblyadapter4:assemblyadapter-list:${LAST_VERSION}")
implementation("io.github.panpf.assemblyadapter4:assemblyadapter-pager:${LAST_VERSION}")
implementation("io.github.panpf.assemblyadapter4:assemblyadapter-pager2:${LAST_VERSION}")
implementation("io.github.panpf.assemblyadapter4:assemblyadapter-pager2-paging:${LAST_VERSION}")
implementation("io.github.panpf.assemblyadapter4:assemblyadapter-recycler:${LAST_VERSION}")
implementation("io.github.panpf.assemblyadapter4:assemblyadapter-recycler-paging:${LAST_VERSION}")
}
每个模块包含哪些 Adapter,可以参考后面 '支持的 Adapter' 部分
${LAST_VERSION}
: (no include 'v')
在传统的自定义 Adapter 的过程中我们一般需要以下几个步骤(以 RecyclerView.Adapter 为例,其它 Adapter 大同小异):
- 定义 data 列表
- 重写 getItemCount、getItemId 方法
- 重写 getItemViewType、onCreateViewHolder、onBindViewHolder 方法根据不同的 data 提供不同的结果或实现
AssemblyAdapter 将这一传统定义过程拆分为两个组件,其职责分别如下:
- Adapter:
- 定义 data 列表
- 重写 getItemCount、getItemId 方法
- 根据不同的 data 匹配不同的 ItemFactory
- 使用匹配的 ItemFactory 重写 getItemViewType、onCreateViewHolder、onBindViewHolder 方法
- ItemFactory
- 定义目标 data 的 class
- 创建 item view
- 绑定 data
AssemblyAdapter 只是一个接口,不可以直接使用,你需要针对不同的 Adapter 使用具体的实现类,如下所示:
- assemblyadapter-list
- assemblyadapter-pager
- PagerAdapter
- AssemblyPagerAdapter:多类型实现
- AssemblySingleDataPagerAdapter:单数据实现
- ArrayPagerAdapter:View 数组实现
- ConcatPagerAdapter:连接实现
- FragmentStatePagerAdapter
- PagerAdapter
- assemblyadapter-pager2
- FragmentStateAdapter
- AssemblyFragmentStateAdapter:多类型实现
- AssemblySingleDataFragmentStateAdapter:单数据实现
- ArrayFragmentStateAdapter:Fragment 数组实现
- FragmentStateListAdapter:AsyncListDiffer 实现
- AssemblyFragmentStateListAdapter:多类型 AsyncListDiffer 实现
- AssemblySingleDataFragmentStateListAdapter:单数据 AsyncListDiffer 实现
- ArrayFragmentStateListAdapter:Fragment 数组 AsyncListDiffer 实现
- FragmentStateAdapter
- assemblyadapter-pager2-paging
- FragmentStateAdapter
- PagingDataFragmentStateAdapter:Paging 实现
- AssemblyPagingDataFragmentStateAdapter:多类型 Paging 实现
- LoadStateFragmentStateAdapter:LoadState 实现
- AssemblyLoadStateFragmentStateAdapter:多类型 LoadState 实现
- PagingDataFragmentStateAdapter:Paging 实现
- FragmentStateAdapter
- assemblyadapter-recycler
- assemblyadapter-recycler-paging
- PagingDataAdapter
- AssemblyPagingDataAdapter:多类型 Paging 实现
- LoadStateAdapter
- AssemblyLoadStateAdapter:多类型 LoadState 实现
- PagingDataAdapter
下面演示继承 BindingItemFactory 来定义我们的 ItemFactory
更多自定义 ItemFactory 详细内容请参考 ItemFactory 自定义详解
item 布局定义如下 (item_app_info.xml):
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView android:id="@+id/appItemNameText" />
<TextView android:id="@+id/appItemVersionText" />
<TextView android:id="@+id/appItemSizeText" />
</androidx.constraintlayout.widget.ConstraintLayout>
数据类定义如下:
data class AppInfo(
val name: String,
val packageName: String,
val versionName: String,
val apkSize: Long,
)
class AppInfoItemFactory : BindingItemFactory<AppInfo, ItemAppInfoBinding>(AppInfo::class) {
override fun createItemViewBinding(
context: Context, inflater: LayoutInflater, parent: ViewGroup
): ItemAppInfoBinding {
/*
* 在此处创建 ViewBinding。这个方法只执行一次
*/
return ItemAppInfoBinding.inflate(inflater, parent, false)
}
override fun initItem(
context: Context, binding: ItemAppInfoBinding, item: BindingItem<AppInfo, ItemAppBinding>
) {
/*
* 在此处初始化 item 并绑定 click 事件。这个方法只执行一次
*/
binding.root.setOnClickListener {
// 事件发生时从 item 获取 position 和 数据
val data: AppInfo = item.dataOrThrow
val bindingAdapterPosition: Int = item.bindingAdapterPosition
val absoluteAdapterPosition: Int = item.absoluteAdapterPosition
val launchIntent =
context.packageManager.getLaunchIntentForPackage(data.packageName)
if (launchIntent != null) {
context.startActivity(launchIntent)
}
}
}
override fun bindItemData(
context: Context,
binding: ItemAppInfoBinding,
item: BindingItem<AppInfo, ItemAppInfoBinding>,
bindingAdapterPosition: Int,
absoluteAdapterPosition: Int,
data: AppInfo
) {
/*
* 在此处绑定 item view 的数据。这个方法会经常执行
*/
binding.appItemNameText.text = data.name
binding.appItemVersionText.text = "v${data.versionName}"
binding.appItemSizeText.text = Formatter.formatFileSize(context, data.apkSize)
}
}
只需在创建 Adapter 时通过构造函数传入 ItemFactory 即可,传入多个 ItemFactory 就可以实现多类型 Adapter,如下:
// ListSeparatorItemFactory 是一个列表分割符 ItemFactory 具体实现就不写了
val appAdapter = AssemblyRecyclerAdapter(
listOf(AppInfoItemFactory(), ListSeparatorItemFactory())
)
appAdapter.submitList(
listOf(
ListSeparator("A"),
AppInfo("AirPortal", "cn.airportal", "4.21", 1258291L),
AppInfo("Apex Legends Mobile", "com.ea.gp.apex", "1.2", 100258291L),
AppInfo("APKPure", "com.apkpure.aegon", "3.17.23", 157879798L),
ListSeparator("B"),
AppInfo("Block Earth", "com.craft.earth", "2.42", 57879798L),
AppInfo("Bluestack", "app.bluestack", "1.0.0", 41534523L),
ListSeparator("C"),
AppInfo("Craft Pixel Art Rain", "com.lucky.fairy", "15", 4247204L),
AppInfo("Cutting Edge!", "com.cuttingedge", "0.16", 4289472412L),
AppInfo("Cyber Knights", "com..cyberknightselite", "2.9.4", 6174924L),
AppInfo("Guardians", "com.emagroups.cs", "1.2.3", 7782423L),
)
)
RecyclerView(activity).adapter = appAdapter
- 自定义 ItemFactory
- 通过 ConcatAdapter 实现 header 和 footer
- 为 BaseAdapter 等更多 Adapter 提供 Concat 支持
- 给 RecyclerView 配置 divider
- 设置 spanSize 和 fullSpan
- 支持 Paging
- 支持 ViewPager 和 ViewPager2
- BaseExpandableListAdapter 支持
- 通过 AssemblySingleData*Adapter 实现只有一条数据的 Adapter
- 使用占位符 Placeholder
Please view the CHANGELOG.md file
Copyright (C) 2021 panpf <panpfpanpf@outlook.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.