base-adapter-helper icon indicating copy to clipboard operation
base-adapter-helper copied to clipboard

Abstraction for the usual BaseAdapter "ViewHolder" pattern

Results 19 base-adapter-helper issues
Sort by recently updated
recently updated
newest added

I need to use recycleview does QuickAdapter fit recycleview?

Can I use data binding with this great framework?

helper.setText(R.id.name,"值"); 然后就我这里是一个textview,我这里传过,这个id=“name”的textview为null,然后我在运行一次又好了,今天出现这个textview不能转换成linearlayout我凌乱了???,我这里什么也没有做,就是写了这么一行代码

I don't want to use picasso to load the image , Can I Use base-adapter-helper without picasso ?

Hi, Thanks for the library. it'll be great to have filter implementation also.

enhancement

hey, dear JoanZapata : I really like your Base-adapter-helper,it`s easy to use ~~ But if the type of items is more than 2 , I have to write many code...

enhancement

I put listview.setAdapter() in activity's onCreate() method, and I am sure that the onCreate() method isn't re-called. I guess adapter.notifyDatasetChanged is called by this lib but I don't find it....

Custom as follow: ``` java public BaseAdapterHelper setOnCheckedChangeListener(int viewId, CompoundButton.OnCheckedChangeListener listener) { CompoundButton view = retrieveView(viewId); view.setOnCheckedChangeListener(listener); return this; } ```

enhancement

AbstractPagerAdapter for ViewPager EnhancedExpandAdapter for ExpandableListView 2.Add a few methods ```Set a view visibility to VISIBLE or GONE or INVISIBLE. BaseAdapterHelper.setVisible(int viewId, int visible) ```Sets the selected status of a...