OmegaRecyclerView - Custom RecyclerView For Android
Custom RecyclerView with additional functionality. Allow you add divider, itemSpace, emptyView, sticky header and some other features Installation To get a Git project into your build: Step 1. Add the JitPack repository to your build file allprojects { repositories { ... maven { url 'https://jitpack.io' } } } Step 2. Add the dependency dependencies { implementation 'com.github.Omega-R:OmegaRecyclerView:1.9.5@aar' // AndroidX // or // implementation 'com.github.Omega-R:OmegaRecyclerView:1.8.2@aar' // Android Support } Usage Example of usage in xml layout com.omega_r.libs.omegarecyclerview.OmegaRecyclerView android:id="@+id/custom_recycler_view" android:layout_width="match_parent" android:layout_height="match_parent" android:divider="#888" android:dividerHeight="1dp" app:itemSpace="12dp" ap...