Easily create complex recyclerview adapters in android

Overview

😔 Due to the nature of my job and growing popularity of Jetpack Compose, I lack the motivation to keep this project alive.



Alt text

GitHub license Code coverage Build Status

Recyclerview is one of the powerful widgets inside android framework. But creating adapters with multiple view types is always exhausting. Not anymore. MultiViewAdapter makes it easy for you to create adapter with multiple view types easily. Using the library you will be able to build composable view holders, which can be re-used across your app. Apart from this, MultiViewAdapter adds many other useful features into the library as add-ons.

🎉 🎉 MultiViewAdapter v3.0 supports AndroidX. v3.0 is identical to v2.0 except for package name changes and androidx support.

Contents

  1. Why this library
  2. Feature Showcase
  3. Gradle Dependency
  4. Core Concepts
  5. Basic Usage
  6. Advanced Usage
  7. Learn More
  8. Changelog
  9. Contribution
  10. Credits
  11. Hall of fame
  12. License

Why this library?

Have you ever displayed multiple view types inside a single adapter? Have you ever added selection mode to an adapter? Have you ever set different span size to different items inside a single adapter? Have you ever added swipe-to-dismiss / drag & drop / infinite scrolling features to your adapter?

If you answered yes, then you must know how hard it is to do any one of these. What if you had to add all of these inside a single adapter. Phew.

Problems with default adapter

  1. In default adapter approach, code is not re-usable as it is.
  2. If you have to add multiple viewtypes the code grows painfully.
  3. If the data needs to be updated, its hard to write the updation logic and call the correct notify method.

Problems with similar libraries

To solve the above problems, you can also use a different library or libraries. But such libraries have a common restrictions - Your data model will be polluted with the view logic.

  1. Your data objects should extend/implement from library's model, which can interfere with your object hierarchy.
  2. View holder creation and binding has to be written inside the data model. You are forced to keep layout and view references inside the model class itself.
  3. For complex lists, generic notifyDataSetChanged method will be called during updation. Also these libraries don’t take advantage of DiffUtil.
  4. You have to write switch cases, if you want to have different item-decorations/span-size/selection-modes/expansion-modes for different view types.
  5. You lose the 'type' information when accessing objects ie., you need to cast the object every time you need it.

MultiViewAdapter solves all of these requirements. The library was specifically designed in a way to not interfere with your object modeling and hierarchy.


Feature Showcase

Here are the few features which are possible with this library.

Multiple Viewtypes Multiple Spans Other Features
Multiple Viewtypes Multiple Span Other
Selection Item Expansion Section Expansion
Selection Item Expansion Section Expansion

Gradle Dependency

The library is available via JCenter. JCenter is the default maven repository used by Android Studio. The minimum API level supported by this library is API 14.

Adding Library

Core

dependencies {
    implementation 'dev.ahamed.mva2:adapter:2.0.0'
}

Adding Extension

Extensions

dependencies {
    implementation 'dev.ahamed.mva2:ext-databinding:2.0.0'  // DataBinding
    implementation 'dev.ahamed.mva2:ext-decorator:2.0.0'    // Decorators
    implementation 'dev.ahamed.mva2:ext-diffutil-rx:2.0.0'  // RxDiffUtil
}

Using Snapshot Version

Just add '-SNAPSHOT' to the version name

dependencies {
    implementation 'dev.ahamed.mva2:adapter:2.0.0-SNAPSHOT' // Library
}

To use the above snapshot version add the following to your project's gradle file

allprojects {
    repositories {
        maven {
            url 'https://oss.jfrog.org/artifactory/oss-snapshot-local'
        }
    }
}

Core Concepts

Core mantra of MultiViewAdapter - Separation of view logic from data management logic. You get two different components which are :

  1. Section - Component to hold your data. All data related updates will run here and proper notify method will be called on the adapter.
  2. ItemBinder - Component which creates and binds your view holder. All view related logic should go here.

Section

Section is the building block for MultiViewAdapter. Section will hold your data which needs to be displayed inside the recyclerview - data can be a single item or list of items. When the underlying data is changed the section will calculate the diff and call the correct notify method inside the adapter. You can add as many as Section to an adapter.

How Section Works GIF

There are different types of sections.

Name Description
ItemSection Section to display single item
ListSection Section to display list of items
HeaderSection Section to display list of items along with a header
NestedSection Section which can host other section
TreeSection Section which can display items in tree fashion. Ex: Comment list

ItemBinder

ItemBinder is the class where all view related code should be written. ItemBinder is responsible for creating and binding view holders. The method signatures are kept close to the default RecyclerView.Adapter method signatures. For each viewtype inside the recyclerview, you need to create an ItemBinder.

ItemBinder allows you to have different decoration for different view types. Apart from this, with ItemBinder you will be able to add Swipe-to-dismiss, drag and drop features.


Basic Usage

Lets create an adapter which displays a list of cars. Follow these steps.

  1. You need to create an ItemBinder for your model. ItemBinder is responsible for creating and binding your view holders. Following is the code snippet of ItemBinder for CarModel class.

CarBinder

public class CarBinder extends ItemBinder<CarModel, CarBinder.CarViewHolder> {

  @Override public CarViewHolder createViewHolder(ViewGroup parent) {
      return new CarViewHolder(inflate(R.layout.item_car, parent));
  }

  @Override public boolean canBindData(Object item) {
      return item instanceof CarModel;
  }

  @Override public void bindViewHolder(CarViewHolder holder, CarModel item) {
      holder.tvCarName.setText(item.getName());
  }

  static class CarViewHolder extends ItemViewHolder<CarModel> {

    TextView tvCarName;

    public CarViewHolder(View itemView) {
        super(itemView);
        tvCarName = findViewById(R.id.tv_car_name);
    }
  }
}
  1. Now create an adapter and use the ItemBinder created above. Since we are displaying a list of items we need to create an ListSection object and add the data items to it. Now add this section to adapter. Done.

Inside Activity/Fragment

class CarListActivity extends Activity {
  private RecyclerView recyclerView;
  private List<CarModel> cars;

  public void initViews() {

      // Create Adapter
      MultiViewAdapter adapter = new MultiViewAdapter();
      recyclerView.setAdapter(adapter);

      // Register Binder
      adapter.registerBinders(new CarItemBinder());

      // Create Section and add items
      ListSection<YourModel> listSection = new ListSection<>();
      listSection.addAll(cars);

      // Add Section to the adapter
      adapter.addSection(listSection);
  }
}

Yay!! We are done.


Advanced Usage

Multiple viewtypes

The USP of MultiViewAdapter is adding multiple viewtypes to a single adapter easily. For each view type you need to create an ItemBinder and register it with the adapter. You don't need to manage the viewtypes yourself or write crazy if-else-if conditions.

    adapter.registerBinders(new Binder1(), new Binder2(), ...);

Multiple Sections

Sections are building blocks of MultiViewAdapter. You can add as many as sections to the adapter and you can nest the sections within another section as well. Each section represents a data set. If you want to display multiple data set inside a single adapter you can do so by adding any number of sections.

    adapter.addSection(new ItemSection());
    adapter.addSection(new ListSection());
    adapter.addSection(new NestedSection());
    // And so on...

Selection

Full Documentation

MultiViewAdapter provides easy way to add selection/choice mode for the recyclerview. There are four types of mode available

  1. SINGLE - Only one item can be selected.
  2. MULTIPLE - Multiple items can be selected.
  3. INHERIT - Inherits the property from the parent. This the default value for sections.
  4. NONE - Disables the selection mode.

Set selection mode to your adapter or section.

    adapter.setSelectionMode(Mode.SINGLE);

    // You can set selection mode for section as well
    section1.setSelectionMode(Mode.MULTIPLE); // Different mode than adapter
    section2.setSelectionMode(Mode.NONE); // Disables selection for this section

To select an item, inside the viewholder call ItemViewHolder.toggleItemSelection() method. For example,

  static class ViewHolder extends BaseViewHolder<SelectableItem> {

    ViewHolder(View itemView) {
      super(itemView);
      itemView.setOnClickListener(new View.OnClickListener() {
        @Override public void onClick(View view) {
          toggleItemSelection();
        }
      });
    }
  }

Expansion

Full Documentation

MultiViewAdapter allows you to expand/collapse a single item or an entire section. There are four types of expansion mode available.

  1. SINGLE - Only one item/section can be expanded.
  2. MULTIPLE - Multiple items/sections can be expanded.
  3. INHERIT - Inherits the property from the parent. This the default value for sections.
  4. NONE - Disables the expansion mode.

Set expansion mode to the adapter.

    // Expanding single item
    adapter.setExpansionMode(Mode.SINGLE);
    section1.setExpansionMode(Mode.MULTIPLE); // Different mode than adapter
    section2.setExpansionMode(Mode.NONE); // Disables expansion for this section

    // Expanding Sections
    adapter.setSectionExpansionMode(Mode.SINGLE);

To expand/collapse an item, inside the viewholder call ItemViewHolder.toggleItemExpansion() method. Similarly to expand/collapse a section, call ItemViewHolder.toggleSectionExpansion() method. For example,

  static class ViewHolder extends BaseViewHolder<SelectableItem> {

    ViewHolder(View itemView) {
      super(itemView);
      itemView.setOnClickListener(new View.OnClickListener() {
        @Override public void onClick(View view) {
          toggleItemExpansion();
          // or
          toggleSectionExpansion();
        }
      });
    }
  }

Different SpanCount

Full Documentation

You can display items inside the adapter with different span count. You can customise the span count either by ItemBinder or Section.

Different span count by viewtype

Each ItemBinder can customise the span count by overriding a method like this. maxSpanCount is the span count of parent.

    public class SampleBinder extends ItemBinder<SampleModel, SampleViewHolder> {

      @Override public int getSpanSize(int maxSpanCount) {
        return YOUR_SPAN_COUNT;
      }

    }

Different span count for sections

You can also set span count for individual sections. Call section.setSpanCount(int) to set the span count for sections.

Swipe to dismiss

Full Documentation

Swipe to dismiss gesture can be added in two simple steps.

Attach your RecyclerView to the adapter's ItemTouchHelper.

  adapter.getItemTouchHelper().attachToRecyclerView(recyclerView);

Override getSwipeDirections() inside your viewholder class.

    @Override public int getSwipeDirections() {
      return ItemTouchHelper.LEFT | ItemTouchHelper.RIGHT;
    }

Drag and drop

Full Documentation

You can drag and drop the items inside or across sections. An item can be moved to any place of another item - only constraint is view type should be same for both items. Drag and drop gesture can be added by two simple steps,

Attach your RecyclerView to the adapter's ItemTouchHelper.

  adapter.getItemTouchHelper().attachToRecyclerView(recyclerView);

Override getDragDirections() inside your viewholder class.

    @Override public int getDragDirections() {
      return ItemTouchHelper.LEFT
          | ItemTouchHelper.UP
          | ItemTouchHelper.RIGHT
          | ItemTouchHelper.DOWN;
    }

Infinite scrolling

Full Documentation

Infinite loading is a add-on feature available in MultiViewAdapter ie., you don't need to create a separate adapter. You can use it with existing MultiViewAdapter, by creating an InfiniteLoadingHelper object and setting it to adapter.

  protected void setUpAdapter() {
    // Only 10 pages will be loaded
    infiniteLoadingHelper = new InfiniteLoadingHelper(recyclerView, R.layout.item_loading_footer, 10) {
      @Override public void onLoadNextPage(int page) {
        // Load next page
      }
    };
    adapter.setInfiniteLoadingHelper(infiniteLoadingHelper);
  }

Custom decoration

Full Documentation

The library allows you to draw decoration for individual items or sections. You can create a decoration by extending Decorator which can be added to any ItemBinder or Section.

  MultiViewAdapter adapter = new MultiViewAdapter();
  recyclerView.addItemDecoration(adapter.getItemDecoration());

  // Add to itembinder
  itemBinder.addDecorator(new SampleDecoration());
  // or you can add it to a Section
  section.addDecorator(new SampleDecoration());

Decoration and its api's are powerful feature of this library. Kindly read the full documentation to understand the complete feature. Decoration Documentation


Learn More

  1. Documentation Website - If you would like to learn more about various other features, kindly read the documentation. All features are documented with sample code which should help you set-up complex recyclerview adapters.
  2. Sample App - Sample app showcases all the features of the library. Also it is an excellent reference for creating most complex use cases.
  3. JavaDocs

Changelog

v2.0.0

Type Stability Date
Major Stable 29-October-2019

After being in development for more than a year and being in beta for more than three months, the library is moved to stable release.

Changes

  • NestedSection visibility flags are passed down to its children. This fixes incorrect selection/expansion toggles on child views.

v2.0.0-beta01

Type Stability Date
Major Beta 3-July-2019

All public API's are finalized for v2.0.0 release, only bug fixes will be added in further beta's.

Features added

  • Added OnItemClickListener method inside the ItemSection class.

Bug fixes

  • Fixed NPE thrown by ItemSection when the item is null and expansion/selection is toggled.

Behavior Changes

  • HeaderSection is has been changed to host ItemSection and NestedSection. Previously it was hosting ItemSection and ListSection.

v2.0.0-alpha02

Type Stability Date
Major Alpha 31-May-2019

Features added

  • Implemented onDrawOver method inside the decoration api

Bug fixes

  • Fixed incorrect adapter position being sent to notify while calling clearAllSelections() method - Issue
  • Fixed incorrect 'selection' and 'expansion' behaviour - Issue

Behavior Changes

  • Pre-defined payload is sent when item's selection/expansion is toggled
  • TreeSection decoration behavior is changed
  • TreeSection when created, will be either expanded or collapsed by user flag

Misc

  • Sample app updated is with new showcases for decoration and TreeSection api's
  • Automation for app releases is enabled. Now app is pushed to playstore with a git-tag push
  • Project contribution guidelines and templates are added

v2.0.0-alpha01

Type Stability Date
Major Alpha 20-April-2019
  • Initial release for v2.x refactor

Alternatively, you can visit the project's releases page for complete changelog. (View Releases) Also if you watch this repository, GitHub will send you a notification every time there is an update.


Contribution

We welcome any contribution to the library. This project has a good infrastructure which should make you comfortable to push any changes. When you make a pull request CI builds the project, runs the test cases and reports the test coverage changes, so you will know whether your pull request is breaking build.

You can contribute to any of the following modules:

  1. Core Library
  2. Library Extensions
  3. Sample App
  4. Documentation
  5. Design assets

We are looking for project maintainers, who have made prior contributions to this project can get in touch if interested. You can contact the project owner here.


Credits

This project stands on the shoulders of open source community. It is a must to credit where it is due.

  1. AOSP - Android Open Source Project
  2. Artifactory OSS - Repository manager to host snapshot builds
  3. Bintray - Distribution platform
  4. Bitrise - CI & CD service
  5. Codecov - Code coverage hosting service
  6. Docsify - Documentation generator
  7. Github - Version control & issue management platform

Also this library uses following open source gradle plugins

  1. Bintray Release - Plugin to release the library artifacts to bintray
  2. Artifactory Publish - Plugin to release snapshots to artifactory oss

If this library does not suit your needs create an issue/feature request. Meanwhile check these awesome alternatives as well.

  1. MultipleViewTypesAdapter - Original inspiration for this library
  2. AdapterDelegates
  3. Groupie
  4. Epoxy

Hall of fame

If you are using MultiViewAdapter in your app and you are happy with it, you can create a pull request to include your app information here. We will display it here.


License

Copyright 2017 Riyaz Ahamed

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.
Comments
  • Multiple  items on expandable item

    Multiple items on expandable item

    Hello @DevAhamed,

    Awesome work you have done on the new features.

    I was however wondering if it's possible to do an example with multiple items under an expandable item.

    Thanks

    type:question 
    opened by lawrence615 6
  • Add the HeaderSections rather than the sections themselves.

    Add the HeaderSections rather than the sections themselves.

    The xxxSection is being added to the adapter, rather than the enclosing xxxHeaderSection. Error is reported by addSection throwing IllegalStateException("Section is already has a parent!")

    opened by ElectricMagic 5
  • Expanding non-child groups

    Expanding non-child groups

    Is it possible to expand groups that are not children? For example, I have a header that says "expand all", when clicking this header I want to expand three different groups bellow this header. As far as I can see I can only expand from the ViewHolder itself and that's not enough for this requirement I think.

    opened by reuvenlevitsky 4
  • Multipleviews

    Multipleviews

    Hi @DevAhamed,

    I was reading the Multiple Data Sets section on the wiki and I wonder if it is possible to add a header view for each data set?

    Also in this example I see that there are two separate list. How can we do if we have one list with different kind of views? (Ex.: a newsfeed where one item is a photo item, one a simple text item and they have different layouts)

    Thank you.

    opened by kozmabalazs 4
  • Disable swipe to dismiss for certain positions

    Disable swipe to dismiss for certain positions

    Swipe to dismiss feature is working nice, thanks. But can I disable this feature for certain positions/items (e.g. first item) in the RecyclerView? I'd like to use the same section for all items, because they are literally the same.

    I'm using 3.x branch.

    type:question 3.x component-core 
    opened by vkotovv 3
  • Fix issue #20 and #21

    Fix issue #20 and #21

    Fix #20 : In CoreRecyclerAdapter, getItemPositionInManager(int adapterPosition) return shifted item position when item is in DataGroupManager, caused by the headItemManager's size in DataGroupManager.

    Fix #21 : GridItemBinder in the sample app calls startDrag(); when long click the item.

    opened by wenris 3
  • Can I add multiple binder with same DataModel?

    Can I add multiple binder with same DataModel?

    I want to add multiple binders with the same DataModel as shown below

    Binder1 class

    public class Binder1 extends ItemBinder<DataModel, Binder1.ViewHolder> {
    
        @Override
        public Binder1 createViewHolder(ViewGroup parent) {
            return new ViewHolder(inflate(parent,R.layout.list_item));
        }
    
        @Override
        public void bindViewHolder(ViewHolder holder, DataModel dataModel) {
           
        }
    
        @Override
        public boolean canBindData(Object item) {
            return item instanceof DataModel;
        }
    
        static class ViewHolder extends ItemViewHolder<DataModel> {
            
            public NotificationViewHolder(View itemView) {
                super(itemView);
              
            }
        }
    }
    
    

    Binder2 class

    public class Binder2 extends ItemBinder<DataModel, Binder2.ViewHolder> {
    
        @Override
        public Binder2 createViewHolder(ViewGroup parent) {
            return new ViewHolder(inflate(parent,R.layout.list_item_one));
        }
    
        @Override
        public void bindViewHolder(ViewHolder holder, DataModel dataModel) {
           
        }
    
        @Override
        public boolean canBindData(Object item) {
            return item instanceof DataModel;
        }
    
        static class ViewHolder extends ItemViewHolder<DataModel> {
            
            public NotificationViewHolder(View itemView) {
                super(itemView);
              
            }
        }
    }
    
     MultiViewAdapter adapter = new MultiViewAdapter();
            
                recyclerView.setAdapter(adapter);
    
                // Register Binder
                adapter.registerItemBinders(new Binder1(), new Binder2());
    
                // Create Section and add items
                ListSection<DataModel> listSection = new ListSection<>();
      List<DataModel> list = new ArrayList<>();
      list.add(new DataModel());
      list.add(new DataModel());
      listSection.addAll(list);
    
                // Add Section to the adapter
                adapter.addSection(listSection);
    

    Can I do like the above? If not then how to achieve this using MultiViewAdapter.

    I have the same model class but need to show different View Type on the basis of some parameter̥

    type:question 
    opened by kawtikwar 2
  • Effect of expanding and collapsing an item on the holder's itemView

    Effect of expanding and collapsing an item on the holder's itemView

    When an item in the expandable list is expanded or collapsed, most of the contents of the holder's itemView are not affected (except the expand/contract indicator). I have a holder which has many complex views (including a TextureView) that do not need to be refreshed every time I expand or collapse that item. So I was thinking that shouldn't there be an alternative abstract method in the ItemBinder class which should get invoked instead of invoking the bind() method when expanding or collapsgin an item, where we put the views that get changed only on expanding/collapsing? I think the impact on performance could be reduced by this.

    opened by premacck 2
  • AndroidX Support

    AndroidX Support

    Since AndroidX packages are now out of beta, its time to add support for new packages. Since this requires a major refactor, my current plan is to release it with v2 refactor.

    opened by DevAhamed 2
  • fix

    fix "java.lang.IllegalAccessError"

    In kotlin, it give me an error : java.lang.IllegalAccessError: Illegal class access: 'com.ahamed.sample.SampleAdapter' attempting to access 'com.ahamed.multiviewadapter.BaseDataManager'

    Just change 'com.ahamed.multiviewadapter.BaseDataManager' to public.

    opened by liaction 2
  • Failed to resolve: dev.ahamed.mva2:adapter:3.0.0-beta01

    Failed to resolve: dev.ahamed.mva2:adapter:3.0.0-beta01

    Hi again,

    I'm trying to use latest versions to be able to use additional API's of Decorator.

    api 'dev.ahamed.mva2:adapter:3.0.0-beta01'

    But gradle sync is returning the following error:

    ERROR: Failed to resolve: dev.ahamed.mva2:adapter:3.0.0-beta01
    Show in Project Structure dialog
    Affected Modules: app
    

    What is wrong with the declaration?

    opened by JGeraldoLima 1
  • MultiViewAdapter not working views are not showing up

    MultiViewAdapter not working views are not showing up

    Please complete the following information:

    • Android API level: 28
    • Library Version: 2.0.0
    • Recyclerview Version - com.android.support:recyclerview-v7:28.0.0'
    new 
    opened by kuberakm 0
  • TreeSection.getChild(0) crashes! This actually return an item section.

    TreeSection.getChild(0) crashes! This actually return an item section.

    java.lang.ClassCastException: mva3.adapter.ItemSection cannot be cast to mva3.adapter.TreeSection at mva3.adapter.TreeSection.getChild(TreeSection.java:76) at dev.ahamed.mva.sample.view.nested.NestedSectionFragment$1.onDelete(NestedSectionFragment.java:37) at dev.ahamed.mva.sample.view.nested.CommentBinder.lambda$initViewHolder$0(CommentBinder.java:28) at dev.ahamed.mva.sample.view.nested.-$$Lambda$CommentBinder$BL6S8bj_RCaBZ4fWZK0Huo3p0eI.onClick(Unknown Source:4) at android.view.View.performClick(View.java:6320) at com.google.android.material.button.MaterialButton.performClick(MaterialButton.java:932) at android.view.View$PerformClick.run(View.java:24980) at android.os.Handler.handleCallback(Handler.java:794) at android.os.Handler.dispatchMessage(Handler.java:99) at android.os.Looper.loop(Looper.java:176) at android.app.ActivityThread.main(ActivityThread.java:6662) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:547) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:873) Please complete the following information:

    • Android API level: [e.g. 26]
    • Library Version: [e.g. 3.0.0]
    • Recyclerview Version [e.g. 1.0.0]
    new 
    opened by aungkhanthtoo 0
  • IllegalStateException when loading items

    IllegalStateException when loading items

    I'm experiencing a crash when reloading my sections. In my setup we have 1xItemSection + 2xListSection, all using the same view item type. On binding, we hide all sections, and when we update the dataset we do the following:

    1. setItem on ItemSection (could be a null item)
    2. set on both ListSection
    3. show the section if they contain data.

    We're also using DiffUtil for both list sections. The crash is happening on NestedSection.java #199 When we debug the section had data and itemPosition is usually 0.

    Thanks in advance.

    • Android API level: [28]
    • Library Version: [3.0.0]
    • Recyclerview Version [AndroidX 1.0.0]
    new 
    opened by AlonShahaf 0
  • Layout manager: reverseLayout

    Layout manager: reverseLayout

    when set "layoutManager.reverseLayout = true", on scroll to top, the onLoadNextPage(page: Int) is not triggered instantly, need to scroll a little to bottom after that onLoadNextPage is invoked. Why? can anyone help me?

    new 
    opened by VasileDiaconu 2
  • InfiniteLoadingHelper and StaggeredGridLayoutManager

    InfiniteLoadingHelper and StaggeredGridLayoutManager

    My layout is staggered grid layout with span count of 2. When I try to use the infinite loading helper, it is showing in the frame, however, it looks like its span count is 1, meaning, it doesn't take the entire width.

    • Android API level: 23
    • Library Version: 2.0.0
    • Recyclerview Version 1.1.0
    new 
    opened by ebekerman 0
Releases(v2.0.0-beta01)
  • v2.0.0-beta01(Jul 3, 2019)

  • v2.0.0-alpha02(May 31, 2019)

  • v1.2.2(Jul 11, 2017)

  • v1.2.1(Jul 11, 2017)

    1. Add unit testing and instrumentation testing to identify regression.
    2. Automated build process to report code-coverage
    3. Fixed issues raised from unit testing
    Source code(tar.gz)
    Source code(zip)
  • v1.2.0(Jun 14, 2017)

    Changelog :

    1. All deprecated classes and methods are removed from the library
    2. Fixed an issue where data-binding dependency is always added to the project.
    3. SimpleRecyclerAdapter is added - helps to create adapters quickly, if it has only one view type.
    4. Multiple item decorators can be added to the ItemBinder
    5. Swipe to dismiss listener is added.
    6. Drag and drop update - Items can be dragged by calling 'startDrag()' method inside view holder.
    Source code(tar.gz)
    Source code(zip)
  • v1.1.0(Jun 1, 2017)

    Features added :

    1. Data binding support
    2. Drag and drop
    3. Swipe to delete
    4. Infinite scrolling
    5. Contexual action mode
    6. Expandable item
    7. Expandable group

    Deprecation :

    Few of the listeners, util classes are deprecated and scheduled to be removed with release of v1.2.0. Most of the deprecations are because of moving them to util package. Kindly check the javadoc for alternative imports. Sorry for the inconvenience caused.

    Source code(tar.gz)
    Source code(zip)
  • v1.0.1(May 13, 2017)

  • v1.0.0(May 9, 2017)

  • v0.9.0(May 1, 2017)

Owner
Riyaz Ahamed
Android Developer by profession and by passion.
Riyaz Ahamed
Android library to create chat message view easily

ChatMessageView ChatMessageView helps you to create chat message view quickly like a typical chatting application. Its a container view, so you can ad

Himanshu Soni 641 Dec 24, 2022
Android library for multiple snapping of RecyclerView

MultiSnapRecyclerView Gradle dependencies { implementation 'com.github.takusemba:multisnaprecyclerview:x.x.x' } Features This is an Android Libra

TakuSemba 2.5k Jan 4, 2023
Drag and drop to reorder items in a list, grid or board for Android. Based on RecyclerView. Also supports swiping items in a list.

DragListView DragListView can be used when you want to be able to re-order items in a list, grid or a board. It also supports horizontal swiping of it

Magnus Woxblom 658 Nov 30, 2022
This project has been superseded by SuperSLiM, a layout manager for RecyclerView. I strongly recommend using SuperSLiM and not StickyGridHeaders.

StickyGridHeaders Replacement project at SuperSLiM This repository is abandoned and will no longer see any development or support. The replacement Sup

Tonic Artos 1.5k Nov 15, 2022
Just a Wheel——A easy way to setEmptyView to ListView、GridView or RecyclerView etc..

中文说明在这里 TEmptyView Just a Wheel—— A easier way to setEmptyView. Without having to write xml file every time. It supports AdapterView(ListView,GridView

Barry 454 Jan 9, 2023
Janishar Ali 2.1k Jan 1, 2023
A simple launcher which displays all the apps on a RecyclerView trying to KISS

A simple launcher which displays all the apps on a RecyclerView trying to KISS

Alex Allafi 1 Jun 17, 2022
Android library used to create an awesome Android UI based on a draggable element similar to the last YouTube graphic component.

Draggable Panel DEPRECATED. This project is not maintained anymore. Draggable Panel is an Android library created to build a draggable user interface

Pedro Vicente Gómez Sánchez 3k Dec 6, 2022
A Tinder-like Android library to create the swipe cards effect. You can swipe left or right to like or dislike the content.

Swipecards Travis master: A Tinder-like cards effect as of August 2014. You can swipe left or right to like or dislike the content. The library create

Dionysis Lorentzos 2.3k Dec 9, 2022
💳 CreditCardView is an Android library that allows developers to create the UI which replicates an actual Credit Card.

CreditCard View CreditCardView is an Android library that allows developers to create the UI which replicates an actual Credit Card. Displaying and en

Vinay Gaba 769 Dec 14, 2022
Create an header for com.google.android.material.navigation.NavigationView

Header View This is a view for NavigationView in android.support.design library Import At the moment the library is in my personal maven repo reposito

Raphaël Bussa 106 Nov 25, 2022
Android view that allows the user to create drawings. Customize settings like color, width or tools. Undo or redo actions. Zoom into DrawView and add a background.

DrawView Android view that allows the user to create drawings. Draw anything you like in your Android device from simple view. Customize draw settings

Oscar Gilberto Medina Cruz 839 Dec 28, 2022
This is a sample Android Studio project that shows the necessary code to create a note list widget, And it's an implementation of a lesson on the Pluralsight platform, but with some code improvements

NoteKeeper-Custom-Widgets This is a sample Android Studio project that shows the necessary code to create a note list widget, And it's an implementati

Ibrahim Mushtaha 3 Oct 29, 2022
Code Guide: How to create Snapchat-like image stickers and text stickers.

MotionViews-Android Code Guide : How to create Snapchat-like image stickers and text stickers After spending 2000+ hours and releasing 4+ successful a

Uptech 474 Dec 9, 2022
The CustomCalendarView provides an easy and customizable calendar to create a Calendar. It dispaly the days of a month in a grid layout and allows to navigate between months

Custom-Calendar-View To use the CustomCalendarView in your application, you first need to add the library to your application. You can do this by eith

Nilanchala Panigrahy 113 Nov 29, 2022
💳 A quick and easy flip view through which you can create views with two sides like credit cards, poker cards etc.

The article on how this library was created is now published. You can read it on this link here. →. ?? EasyFlipView Built with ❤︎ by Wajahat Karim and

Wajahat Karim 1.3k Dec 14, 2022
A set of widgets to create smooth slideshows with ease.

Android SlideShow Widget A set of widgets to create smooth slide shows with ease. The slide show components are fully customizable and are not limited

MarvinLabs 211 Nov 20, 2022
NeoPOP was created with one simple goal; to create the next generation of a beautiful, affirmative design system

NeoPop is CRED's inbuilt library for using NeoPop components in your app

CRED 254 Dec 29, 2022
TourGuide is an Android library that aims to provide an easy way to add pointers with animations over a desired Android View

TourGuide TourGuide is an Android library. It lets you add pointer, overlay and tooltip easily, guiding users on how to use your app. Refer to the exa

Tan Jun Rong 2.6k Jan 5, 2023