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!
- 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.
- 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!
- Create a new BindDictionary
- Add fields.
- Create a new FunDapter instance, supplying the BindDictionary, layout resource file and item list.
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;
}
BindDictionary<Product> dict = new BindDictionary<Product>();
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
.
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.
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.
FunDapter<Product> adapter = new FunDapter<Product>(getActivity(), productArrayList,
R.layout.product_list_item, dict);
- 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
- Support for ViewPagerAdapter
- Support for Favorite toggle buttons (where you provide your own implementation for the data persistence)
- Whatever else I can think of!
Just add compile 'com.github.amigold.fundapter:library:1.0'
to your dependencies in the build.gradle file in your project.
(The MIT License)
Copyright (c) 2012-2013 Ami Goldenberg ami.gold.dev@gmail.com
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.