2020-07-05-Anroid-Kotlin-RecyclerView-Retrofit
build.gradle (Module: app)
dependencies {
...
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.0.0'
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.github.bumptech.glide:glide:4.9.0'
...
}List Item
data class ListItem (
val title: String,
val subtitle: String
)MainListAdaptor.kt
GetUsersService
MainActivity.kt
activity_main.xml
Last updated
Was this helpful?