Skip to content

Instantly share code, notes, and snippets.

View mrkostua's full-sized avatar

Kostiantyn Prysiazny mrkostua

  • Planet Earth
View GitHub Profile
@mrkostua
mrkostua / MainActivity.kt
Last active July 20, 2018 09:31
Kotlin RecycleView.Adapter as Single adapter for project with many RecycleViews.
//Example of usage
//No need for RxBinding or additonal interfaces to handel views clicks
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?, persistentState: PersistableBundle?) {
super.onCreate(savedInstanceState, persistentState)
setContentView(R.layout.activity_main)
initializeRecycleView(ArrayList())
}