2020-07-04-Anroid-Kotlin-RecyclerView-SwipeRefresh

build.gradle (Module: app)

dependencies {
    ...
    implementation 'androidx.recyclerview:recyclerview:1.1.0'
    implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.0.0'
    implementation 'com.android.volley:volley:1.1.1'
    implementation 'com.google.code.gson:gson:2.8.5'
    implementation 'com.github.bumptech.glide:glide:4.9.0'
    ...
}

List Item

data class ListItem (
    val title: String,
    val subtitle: String
)

MainListAdaptor.kt

MainActivity.kt

activity_main.xml

Last updated

Was this helpful?