instant-adapter alternatives and similar packages
Based on the "Adapter" category.
Alternatively, view instant-adapter 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. -
adapter-kit
Adapter Kit is a set of useful adapters for Android. -
SmartRecyclerAdapter
Small, smart and generic adapter for recycler view with easy and advanced data to ViewHolder binding. -
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. -
EasyListViewAdapters
This library provides Easy Android ListView Adapters(EasyListAdapter & EasyCursorAdapter) which makes designing Multi-Row-Type ListView very simple & cleaner, It also provides many useful features for ListView. -
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 Firebase alternative introduces iOS support
* 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 instant-adapter or a related project?
README
Notice
Instant Adapter is now part of an even more awesome Adapter Kit project!
Instant Adapter
Just like instant coffee, saves 78%* of your time on Android's Custom Adapters.
*Based on internal assessments, this information is subjective.
Quick Start I - InstantAdapter
Step 1 - Annotate methods in your model
class Book {
...
@InstantText(viewId = R.id.title)
public String getTitle() {
return title;
}
@InstantText(viewId = R.id.author, formatString = "Author: %s")
public String getAuthor() {
return author;
}
}
Step 2 - Instantiate and set an InstantAdapter to your ListView
InstantAdapter<Book> bookAdapter = new InstantAdapter<Book>(context, R.layout.book_item, Book.class, books);
bookListView.setAdapter(bookAdapter);
Quick Start II - InstantCursorAdapter
Step 1 - Annotate methods in your model
Step 2 - Extend InstantCursorAdapter<T>
class BookCursorAdapter extends InstantCursorAdapter<Book> {
public BookCursorAdapter(Context context, Cursor cursor) {
super(context, R.layout.book_item, Book.class, cursor);
}
@Override
public Book getInstance(Cursor cursor) {
String title = cursor.getString(cursor.getColumnIndex("title"));
String author = cursor.getString(cursor.getColumnIndex("author"));
return new Book(title, author);
}
}
Step 3 - Instantiate and set an InstantCursorAdapter to your ListView
BookCursorAdapter bookCursorAdapter = new BookCursorAdapter(this, booksCursor);
bookListView.setAdapter(bookCursorAdapter);
License
Copyright 2013 Mobs and Geeks
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 instant-adapter README section above
are relevant to that project's source code only.