avast / android-butterknife-zelezny

Android Studio plug-in for generating ButterKnife injections from selected layout XML.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

android-butterknife-zelezny in recyclerView's adapter

Insthyd opened this issue · comments

when I use this plugin in recyclerview adapter, it generates "static class ViewHolder" automatically.but not "static class ViewHolder extends RecyclerView.ViewHolder".How can I achieve it automatically?Thank you.

It doesn't support RecyclerView now.
You need to manually add extend "RecyclerView.ViewHolder" and "super(view);" to ViewHolder class.