What is EasyListViewAdapters?

Whenever you want to display custom items in listview, then only way to achieve this is to implement your own subclass of BaseAdapter, handle all rendering, recycling, click handling ,data browsing youself in getView() method. It becomes very messy as number of rows increase in your adapter, Making your code very messy & non-reusable. This library allows you to make Modular classes which will help you to introduce new row type easily.

Features:

  • Easier than implementing your own Adapter (ie handling BaseAdaper#getView).Very Easier to provide multi-row support.
  • Library takes care of recycling all views, that ensures performance & helps your list view scroll smoothly.
  • Cleaner code. By keeping different RowViewSetter classes for different row-types makes your code easy to manage & easy to reuse.
  • No data browsing, Library takes care of browsing data through data-structure when View is being drawn or event occurs so that Users does not have to look for their data to take actions.
  • Just by passing correct row-types library will Auto-map your data-types to row-types to render views.
  • Row views can be created by using XML or Java (doesn’t restrict to XML-Only Approach).
  • Load More callbacks can be registered to implement paginatation support to your list.
  • Handling children viewclicks, you can also register for Children(present inside your rows) view click events. All these Views are registered with single OnClickListner so that this mechanism is very memory efficient when click event occurs users you gets clickedChildView, rowData,int eventId as callback params.

Overview

  • Pricing: Free
  • Resource Link: https://github.com/birajpatel/EasyListViewAdapters
  • Resource Maker: Biraj Patel
  • Mobile Platform Destination: Android Apps
  • Mobile Platform Support: Native Android
  • Programming Languages: Java
  • Gradle: com.birin:easylistviewadapters:1.0.0