avast / android-butterknife-zelezny

Android Studio plug-in for generating ButterKnife injections from selected layout XML.
Apache License 2.0
3.38k stars 414 forks source link

android-butterknife-zelezny in recyclerView's adapter #117

Open Insthyd opened 7 years ago

Insthyd commented 7 years ago

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.

mcxinyu commented 7 years ago

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