FunDapter alternatives and similar packages
Based on the "Adapter" category.
Alternatively, view FunDapter alternatives based on common mentions on social networks and blogs.
-
FastAdapter
The bullet proof, fast and easy to use adapter library, which minimizes developing time to a fraction... -
SectionedRecyclerViewAdapter
DISCONTINUED. 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. -
SmartRecyclerAdapter
Small, smart and generic adapter for recycler view with easy and advanced data to ViewHolder binding. -
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. -
instant-adapter
DISCONTINUED. Just like instant coffee, saves 78% of your time on Android's Custom Adapters. -
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. -
Suggestive ๐
DISCONTINUED. 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
CodeRabbit: AI Code Reviews for Developers

* 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 FunDapter or a related project?
README
FunDapter takes the pain and hassle out of creating a new Adapter class for each ListView you have in your Android app.
It is a new approach to custom adapter creation for Android apps. You get free ViewHolder pattern support, field validation so you don't get bit by trivial bugs and best of all - you get to keep it DRY!
What's new?
- Gradle support now only contains a JAR archive instead of AAR which wasn't needed. Just add
compile 'com.github.amigold.fundapter2:library:1.01'
to your dependencies in the build.gradle file in your project.
What you used to do:
- Subclass BaseAdapter or copy existing adapter you already wrote.
- Create a ViewHolder static class a define all the views in it.
- Write (Copy.. don't fool yourself!) the whole ViewHolder creation code from somewhere.
- Write all the "findViewById" lines.
- Start filling data in the views inside the getView method.
Well that was boring! I feel your pain!
What FunDapter lets you do:
- Create a new BindDictionary
- Add fields.
- Create a new FunDapter instance, supplying the BindDictionary, layout resource file and item list.
Getting Started
This is the Product
class we'll create an adapter for:
public class Product {
public String title;
public String description;
public String imageUrl;
public double price;
}
Create a new BindDictionary instance:
BindDictionary<Product> dict = new BindDictionary<Product>();
Adding a basic text field:
dict.addStringField(R.id.description,
new StringExtractor<Product>() {
@Override
public String getStringValue(Product item, int position) {
return item.description;
}
});
Notice how you simply provide the id of the TextView
and an
implementation of the StringExtractor
which will be used to get the correct String
value from your Product
.
Now a more complicated text field:
dict.addStringField(R.id.title,
new StringExtractor<Product>() {
@Override
public String getStringValue(Product item, int position) {
return item.title;
}
}).typeface(myBoldFace).visibilityIfNull(View.GONE);
Notice how you can chain calls to get some more complex behaviours out of your views.
typeface()
will set a typeface on the view while
visibilityIfNull()
will change the visibility of the field according to the value being null or not.
What about our image?? Lets add that as well:
prodDict.addDynamicImageField(R.id.productImage,
new StringExtractor<Product>() {
@Override
public String getStringValue(Product item, int position) {
return item.imageUrl;
}
}, new DynamicImageLoader() {
@Override
public void loadDynamicImage(String url, ImageView view) {
//insert your own async image loader implementation
}
});
In here the StringExtractor
grabs the URL from the Product
item while the ImageLoader
gives you a
reference to the view and the URL you extracted so you can use your own custom lazy image loading implementation.
Finally, create the adapter:
FunDapter<Product> adapter = new FunDapter<Product>(getActivity(), productArrayList,
R.layout.product_list_item, dict);
What is supported so far:
- ViewHolder pattern and more performance optimizations
- Switching data using
funDapter.updateData()
- Alternating background colors for the list items. Use
funDapter.setAlternatingBackground()
- Text fields:
- typeface
- visibility if null
- changing textcolor based on a boolean condition - chain
conditionalTextColor()
when setting the field
- Image fields (that load from the web)
- ProgressBar fields - for showing user progress or xp.
- Conditional visibility views - views that are shown or hidden according to some boolean value. (Good for decorations such as "sale" banners)
- All fields support setting an OnClickListener by chaining
onClick()
- ExpandableListAdapter is supported
What next?
- Support for ViewPagerAdapter
- Support for Favorite toggle buttons (where you provide your own implementation for the data persistence)
- Whatever else I can think of!
Gradle Support
Just add compile 'com.github.amigold.fundapter:library:1.0'
to your dependencies in the build.gradle file in your project.
License
(The MIT License)
Copyright (c) 2012-2013 Ami Goldenberg [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*Note that all licence references and agreements mentioned in the FunDapter README section above
are relevant to that project's source code only.