EasyListViewAdapters alternatives and similar packages
Based on the "Adapter" category.
Alternatively, view EasyListViewAdapters alternatives based on common mentions on social networks and blogs.
-
Epoxy
Epoxy is an Android library for building complex screens in a RecyclerView -
FastAdapter
The bullet proof, fast and easy to use adapter library, which minimizes developing time to a fraction... -
SectionedRecyclerViewAdapter
An Adapter that allows a RecyclerView to be split into Sections with headers and/or footers. Each Section can have its state controlled individually. -
Renderers
Renderers is an Android library created to avoid all the boilerplate needed to use a RecyclerView/ListView with adapters. -
MultiChoiceAdapter
Android - A ListView adapter with support for multiple choice modal selection -
AutoplayVideos
Android library to auto-play/pause videos from url in recyclerview. -
SlimAdapter
A slim & clean & typeable Adapter without# VIEWHOLDER -
RecyclerViewHelper
:page_with_curl: [Android Library] Giving powers to RecyclerView -
easy-adapter
[DEPRECATED] Easy Adapters library for Android -
EfficientAdapter
Create a new adapter for a RecyclerView or ViewPager is now much easier. -
SmartRecyclerAdapter
Small, smart and generic adapter for recycler view with easy and advanced data to ViewHolder binding. -
adapter-kit
Adapter Kit is a set of useful adapters for Android. -
FunDapter
Simplify Adapter creation for your Android ListViews. -
GridListViewAdapters
This library provides GridAdapters(ListGridAdapter & CursorGridAdapter) which enable you to bind your data in grid card fashion within android.widget.ListView, Also provides many other features related to GridListView. -
Items
Generate data-view-binding adapters of android recycler view. -
instant-adapter
Just like instant coffee, saves 78% of your time on Android's Custom Adapters. -
RxRecyclerAdapter
Rx based RecyclerView Adapter -
AutoAdapter
This Repository simplifies working with RecyclerView Adapter -
Preview Image Collection
A library to make a mosaic with a preview of multiple images -
IntentSharingAnim
Intent sharing between activities of views with animation -
Android-BasicAdapter
No separate adapter files for not-so-complex RecyclerViews -
Suggestive ๐
An Android UI library that allows easy implementation of (text) input suggestion popup windows. -
MultiLevelAdapter
Android library to allow collapsing and expanding items in RecyclerView's Adapter on multiple levels -
Register-Yourself
This app uses SQLite database to sign-up and register a user
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of EasyListViewAdapters or a related project?
README
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.
This library is designed on ViewHolder design pattern, it provides an easier way of linking multiple type rows and their underlying data. The EasyAdapters will do most of tedious work for you & all you have to do is create your small modular classes & link them together.
Looking for GridView like card support within your ListView (with added capabilities), check GridListViewAdapters.
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.
Adding to your project using gradle
repositories {
maven {
url "https://dl.bintray.com/birajpatel/easylistviewadapters/"
}
}
compile 'com.birin:easylistviewadapters:1.0.0'
Compatibility
- Library : API 4+(DONUT)
- LibrarySample : API 11+(HONEYCOMB)
Supported Data-types
- EasyListAdapter : works with java.util.List of data.
- EasyCursorAdapter : works with android.database.Cursor
Note : EasyCursorAdapter doesn't provide any mechanism to requery attached Cursor (Like traditional CursorAdapter), This behaviour is intentionally omitted as it has been deprecated from Android Sources as well.Instead use CursorLoader Mechanism.
Using EasyListAdapter
Check Quick-Usage-Guide
Using EasyCursorAdapter
Check Quick-Usage-Guide
Sample-App screenshots
EasyListAdapter EasyCursorAdapter Demo Screen
How to understand Sample-App
- 1 For basic step by step explaination read SimplestEasyListAdapterUsageDemoActivity.java
- 2 Read other EasyListAdapter's Demo.
- 3 Read other EasyCursorAdapter's Demo.
Progaurd
No need to add any extra config.
Debugging
See the Debugging Exceptions to know about all Exceptions thrown by library & how to fix them.
License
Copyright 2014-present Biraj Patel
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.
*Note that all licence references and agreements mentioned in the EasyListViewAdapters README section above
are relevant to that project's source code only.