For a working implementation, Have a look at the Sample Project - app
- Include the library as local library project.
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
dependencies {
compile 'com.github.VRGsoftUA:RollingLayoutManagerKotlin:1.0'
}
- Create an insance of RollingLayoutManager
val recyclerView = findViewById<RecyclerView>(R.id.recycler_view)
val rollingLayoutManager = RollingLayoutManager(this)
recyclerView.layoutManager = rollingLayoutManager
- Contributions are always welcome
- If you want a feature and can code, feel free to fork and add the change yourself and make a pull request