dvdciri / MultiChoiceRecyclerView

Multi choice selection applied on recycler view make life easier

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wrong class used in README.md for layout xml

lcasale opened this issue · comments

In your README.md in the implementation example you have...

<com.davidecirillo.multichoicesample.MultiChoiceRecyclerView android:id="@+id/multiChoiceRecyclerView" android:layout_width="match_parent" android:layout_height="match_parent" />

when it should be...

<com.davidecirillo.multichoicerecyclerview.MultiChoiceRecyclerView android:id="@+id/multiChoiceRecyclerView" android:layout_width="match_parent" android:layout_height="match_parent" />

Cool, good spot! Will fix that!

Thanks