A quick adapter library for ListView , GridView , RecyclerView and ExpandableListView on android.
[中文教程](http://www.jianshu.com/p/f18f77255952)
[  ](https://bintray.com/thepacific/maven/adapter/_latestVersion)
 # Features * Based on template type * Simple and clean api * Super esay to use and Much less code
setText()
CallssetText(String)
on any TextView.setAlpha()
CallssetAlpha(float)
on any View.setVisible()
CallssetVisibility(int)
on any View.linkify()
CallsLinkify.addLinks(view, ALL)
on any TextView.setTypeface()
CallssetTypeface(Typeface)
on any TextView.setProgress()
CallssetProgress(int)
on any ProgressBar.setMax()
CallssetMax(int)
on any ProgressBar.setRating()
CallssetRating(int)
on any RatingBar.setImageResource()
CallssetImageResource(int)
on any ImageView.setImageDrawable()
CallssetImageDrawable(Drawable)
on any ImageView.setImageBitmap()
CallssetImageBitmap(Bitmap)
on any ImageView.setImageUrl()
Uses Glide to download the image and put it in an ImageView.setOnClickListener()
setOnTouchListener()
setOnLongClickListener()
setTag()
setChecked()
setAdapter()
compile 'com.github.thepacific:adapter:1.0.3'
- RecyclerAdapterHelper and RecyclerAdapter for RecyclerView
- AdapterHelper and Adapter for ListView and GridView

- ExpandableAdapterHelper and ExpandableAdapter for ExpandableListView

- Currently, don't do getItemView().setTag() ,because ItemView tag has be set to retain Helper object .
compile 'com.github.bumptech.glide:glide:3.7.0'
#Thanks
- Inspired by JoanZapata's base-adapter-helper (https://github.com/JoanZapata/base-adapter-helper) .
- Thanks JoaZapata(https://github.com/JoanZapata) for his great job .