# FastAdapter [ ![Download](https://api.bintray.com/packages/mikepenz/maven/com.mikepenz%3Afastadapter/images/download.svg) ](https://bintray.com/mikepenz/maven/com.mikepenz%3Afastadapter/_latestVersion) > The RecyclerView is one of the most used widgets in the Android world, and with it you have to implement an Adapter which provides the items for the view. Most use cases require the same base logic, but require you to write everything again and again. The FastAdapter is here to simplify this process. You don't have to worry about the adapter anymore. Just write the logic for how your view/item should look like, and you are done. This library has a fast and highly optimized core which provides core functionality, most apps require. It also prevents common mistakes by taking away those steps from the devs. Beside being blazing fast, minimizing the code you need to write, it is also really easy to extend. Just provide another adapter implementation, hook into the adapter chain, custom select / deselection behaviors. Everything is possible. ## A quick overview: - Core module 100% in Kotlin - Click / Long-Click listeners - Selection / Multi-Selection ([MultiselectSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/MultiselectSampleActivity.kt), [CheckBoxSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/CheckBoxSampleActivity.kt), [RadioButtonSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/RadioButtonSampleActivity.kt)) - Expandable items ([ExpandableSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/ExpandableSampleActivity.kt), [IconGridSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/IconGridActivity.kt) ,[AdvancedSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/AdvancedSampleActivity.kt)) - Write less code, get better results - Highly optimized code - Simple Drag & Drop ([SimpleItemListSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/SimpleItemListActivity.kt)) - Headers ([StickyHeaderSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/StickyHeaderSampleActivity.kt), [AdvancedSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/AdvancedSampleActivity.kt)) - Footers - Filter ([SimpleItemListSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/SimpleItemListActivity.kt)) - Includes suggestions from the Android Team - Easily extensible - Endless Scroll ([EndlessScrollSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/EndlessScrollListActivity.kt)) - "Leave-Behind"-Pattern ([SwipeListSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/SwipeListActivity.kt)) - Split item view and model ([ModelItem](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/ModelItemActivity.kt), [MultiTypeModelItem](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/MultiTypeModelItemActivity.kt)) - Chain other Adapters ([SimpleItemListSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/SimpleItemListActivity.kt), [StickyHeaderSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/StickyHeaderSampleActivity.kt)) - Comes with useful Helpers - ActionModeHelper ([MultiselectSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/MultiselectSampleActivity.kt)) - UndoHelper ([MultiselectSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/MultiselectSampleActivity.kt)) - More to come... - FastScroller (external lib) ([SimpleItemListSample](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/SimpleItemListActivity.kt)) - Paging (via Jetpack paging lib) ([PagedActivity](https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/PagedActivity.kt)) # Preview ## Demo You can try it out here [Google Play](https://play.google.com/store/apps/details?id=com.mikepenz.fastadapter.app) (or download the latest release from GitHub) ## Screenshots ![Image](https://raw.githubusercontent.com/mikepenz/FastAdapter/develop/DEV/github/screenshots1.jpg) # Include in your project ## Latest releases - Kotlin | [v4.1.2](https://github.com/mikepenz/FastAdapter/tree/v4.1.2) - Java && AndroidX | [v3.3.1](https://github.com/mikepenz/FastAdapter/tree/v3.3.1) - Java && AppCompat | [v3.2.9](https://github.com/mikepenz/FastAdapter/tree/v3.2.9) ## Using Maven The library is split up into core, commons, and extensions. The core functions are included in the following dependency. ```gradle implementation "com.mikepenz:fastadapter:${latestFastAdapterRelease}" implementation "androidx.appcompat:appcompat:${androidX}" implementation "androidx.recyclerview:recyclerview:${androidX}" ``` Expandable support is included and can be added via this ```gradle implementation "com.mikepenz:fastadapter-extensions-expandable:${latestFastAdapterRelease}" //The tiny Materialize library used for its useful helper classes implementation "com.mikepenz:materialize:${latestVersion}" // at least 1.2.0 ``` Many helper classes are included in the following dependency. ```gradle implementation "com.mikepenz:fastadapter-extensions-diff:${latestFastAdapterRelease}" // diff util helpers implementation "com.mikepenz:fastadapter-extensions-drag:${latestFastAdapterRelease}" // drag support implementation "com.mikepenz:fastadapter-extensions-paged:${latestFastAdapterRelease}" // paging support implementation "com.mikepenz:fastadapter-extensions-scroll:${latestFastAdapterRelease}" // scroll helpers implementation "com.mikepenz:fastadapter-extensions-swipe:${latestFastAdapterRelease}" // swipe support implementation "com.mikepenz:fastadapter-extensions-ui:${latestFastAdapterRelease}" // pre-defined ui components implementation "com.mikepenz:fastadapter-extensions-utils:${latestFastAdapterRelease}" // needs the `expandable`, `drag` and `scroll` extension. // required for the ui components and the utils implementation "com.google.android.material:material:${androidX}" //The tiny Materialize library used for its useful helper classes implementation "com.mikepenz:materialize:${latestVersion}" // at least 1.2.0 ``` ## v4.x.y > Major release, migrates fully to Kotlin. Check out the changelog or the [MIGRATION GUIDE](https://github.com/mikepenz/FastAdapter/blob/develop/MIGRATION.md for more details ## How to use ### 1. Implement your item (the easy way) Just create a class which extends the `AbstractItem` as shown below. Implement the methods, and your item is ready. ```kotlin open class SimpleItem : AbstractItem() { var name: String? = null var description: String? = null /** defines the type defining this item. must be unique. preferably an id */ override val type: Int get() = R.id.fastadapter_sample_item_id /** defines the layout which will be used for this item in the list */ override val layoutRes: Int get() = R.layout.sample_item override fun getViewHolder(v: View): ViewHolder { return ViewHolder(v) } class ViewHolder(view: View) : FastAdapter.ViewHolder(view) { var name: TextView = view.findViewById(R.id.material_drawer_name) var description: TextView = view.findViewById(R.id.material_drawer_description) override fun bindView(item: SimpleItem, payloads: MutableList) { name.text = item.name description.text = item.name } override fun unbindView(item: SimpleItem) { name.text = null description.text = null } } } ``` ### 2. Set the Adapter to the RecyclerView ```kotlin //create the ItemAdapter holding your Items val itemAdapter = ItemAdapter() //create the managing FastAdapter, by passing in the itemAdapter val fastAdapter = FastAdapter.with(itemAdapter) //set our adapters to the RecyclerView recyclerView.setAdapter(fastAdapter) //set the items to your ItemAdapter itemAdapter.add(ITEMS) ``` ### 3. Extensions By default the `FastAdapter` only provides basic functionality, which comes with the abstraction of items as `Item` and `Model`. And the general functionality of adding/removing/modifying elements. To enable *selections*, or *expandables* the provided extensions need to be activated. #### 3.1. SelectExtension ```kotlin // Gets (or creates and attaches if not yet existing) the extension from the given `FastAdapter` val selectExtension = fastAdapter.getSelectExtension() // configure as needed selectExtension.isSelectable = true selectExtension.multiSelect = true selectExtension.selectOnLongClick = false // see the API of this class for more options. ``` #### 3.2. ExpandableExtension > This requires the `fastadapter-extensions-expandable` extension. ```kotlin // Gets (or creates and attaches if not yet existing) the extension. val expandableExtension = fastAdapter.getExpandableExtension() // configure as needed expandableExtension.isOnlyOneExpandedItem = true ``` For further details scroll down to the `ExpandableItems` (under advanced usage) section. ### 3. Click listener ```kotlin fastAdapter.onClickListener = { view, adapter, item, position -> // Handle click here false } ``` ### 4. Click listeners for views inside your item ```kotlin // just add an `EventHook` to your `FastAdapter` by implementing either a `ClickEventHook`, `LongClickEventHook`, `TouchEventHook`, `CustomEventHook` fastAdapter.addEventHook(object : ClickEventHook() { override fun onBind(viewHolder: RecyclerView.ViewHolder): View? { //return the views on which you want to bind this event return if (viewHolder is SimpleImageItem.ViewHolder) { viewHolder.viewWhichReactsOnClick } else { null } } override fun onClick(v: View, position: Int, fastAdapter: FastAdapter, item: SimpleImageItem) { //react on the click event } }) ``` ### 5. Filter ```kotlin // Call this in onQueryTextSubmit() & onQueryTextChange() when using SearchView itemAdapter.filter("yourSearchTerm") itemAdapter.itemFilter.filterPredicate = { item: SimpleItem, constraint: CharSequence? -> item.name?.text.toString().contains(constraint.toString(), ignoreCase = true) } ``` `filter()` should return true for items to be retained and false for items to be removed. ### 6. Drag and drop > This requires the `fastadapter-extensions-drag` extension. First, attach `ItemTouchHelper` to RecyclerView. ```kotlin val dragCallback = SimpleDragCallback() val touchHelper = ItemTouchHelper(dragCallback) touchHelper.attachToRecyclerView(recyclerView) ``` Implement `ItemTouchCallback` interface in your Activity, and override the `itemTouchOnMove()` method. ```kotlin override fun itemTouchOnMove(oldPosition: Int, newPosition: Int): Boolean { DragDropUtil.onMove(fastItemAdapter.itemAdapter, oldPosition, newPosition) // change position return true } ``` ### 7. Using different ViewHolders (like HeaderView) Start by initializing your adapters: ```kotlin // Head is a model class for your header val headerAdapter = ItemAdapter
() ``` Initialize a Model FastAdapter: ```kotlin val itemAdapter = GenericItemAdapter() ``` Finally, set the adapter: ```kotlin val fastAdapter: GenericFastAdapter = FastAdapter.with(headerAdapter, itemAdapter) //the order defines in which order the items will show up // alternative the super type of both item adapters can be used. e.g.: recyclerView.setAdapter(fastAdapter) ``` ### 8. Infinite (endless) scrolling Create a FooterAdapter. We need this to display a loading ProgressBar at the end of our list. (Don't forget to pass it into `FastAdapter.with(..)`) ```kotlin val footerAdapter = ItemAdapter() ``` Keep in mind that ProgressItem is provided by FastAdapter’s extensions. ```kotlin recyclerView.addOnScrollListener(object : EndlessRecyclerOnScrollListener(footerAdapter) { override fun onLoadMore(currentPage: Int) { footerAdapter.clear() footerAdapter.add(ProgressItem()) // Load your items here and add it to FastAdapter itemAdapter.add(NEWITEMS) } }) ``` For the complete tutorial and more features such as multi-select and CAB check out the [sample app](https://github.com/mikepenz/FastAdapter/tree/develop/app). ## Advanced Usage ### Proguard * As of v2.5.0 there are no more known requirements to use the `FastAdapter` with Proguard ### ExpandableItems The `FastAdapter` comes with support for expandable items. After adding the dependency set up the `Expandable` extension via: ```kotlin val expandableExtension = fastAdapter.getExpandableExtension() ``` Expandable items have to implement the `IExpandable` interface, and the sub items the `ISubItem` interface. This allows better support. The sample app provides sample implementations of those. (Those in the sample are kept Model which allows them to be used with different parent / subitems) As of the way how `SubItems` and their state are handled it is highly recommended to use the `identifier` based `StateManagement`. Just add `withPositionBasedStateManagement(false)` to your `FastAdapter` setup. A simple item just needs to extend from the `AbstractExpandableItem` and provide the `ViewHolder` as type. ```kotlin open class SimpleSubExpandableItem : AbstractExpandableItem() { /** * BASIC ITEM IMPLEMENTATION */ } ``` // See the `SimpleSubExpandableItem.kt` of the sample application for more details. ## Articles - [RecyclerView Adapter made easy](https://blog.iamsuleiman.com/recyclerview-adapter-android-made-fast-easy/) (FastAdapter v2.x) ## Libs used in sample app: Mike Penz: - AboutLibraries https://github.com/mikepenz/AboutLibraries - Android-Iconics https://github.com/mikepenz/Android-Iconics - ItemAnimators https://github.com/mikepenz/ItemAnimators - MaterialDrawer https://github.com/mikepenz/MaterialDrawer Other Libs: - Butterknife https://github.com/JakeWharton/butterknife - Glide https://github.com/bumptech/glide - MaterialScrollBar https://github.com/krimin-killr21/MaterialScrollBar - StickyRecyclerHeadersAdapter https://github.com/timehop/sticky-headers-recyclerview # Developed By * Mike Penz * [mikepenz.com](http://mikepenz.com) - * [paypal.me/mikepenz](http://paypal.me/mikepenz) * Fabian Terhorst * [github.com/FabianTerhorst](https://github.com/FabianTerhorst) - * [paypal.me/fabianterhorst](http://paypal.me/fabianterhorst) # Contributors This free, open source software was also made possible by a group of volunteers that put many hours of hard work into it. See the [CONTRIBUTORS.md](CONTRIBUTORS.md) file for details. ## Special mentions A special thanks to the very active contributors who added many improvements to this library. * **[Allan Wang](https://github.com/AllanWang)** * **[MFlisar](https://github.com/MFlisar)** # License Copyright 2019 Mike Penz 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.