kaleidot725
4/1/2020 - 1:41 PM

2020/03/31 [Android]RecyclerView と Paging を組み合わせサンプルと解説 No3

2020/03/31 [Android]RecyclerView と Paging を組み合わせサンプルと解説 No3

interface QiitaService {
    @GET("/api/v2/items")
    fun getItems(@Query("page")page: Int, @Query("per_page") perPage: Int): Call<List<Item>>
}