pull/36/head
parent
f915eb8dcb
commit
abc9c2f196
@ -0,0 +1,15 @@ |
||||
package io.legado.app.ui.book.search |
||||
|
||||
import android.content.Context |
||||
import io.legado.app.R |
||||
import io.legado.app.base.adapter.ItemViewHolder |
||||
import io.legado.app.base.adapter.SimpleRecyclerAdapter |
||||
|
||||
class BookAdapter(context: Context) : |
||||
SimpleRecyclerAdapter<String>(context, R.layout.item_text) { |
||||
|
||||
override fun convert(holder: ItemViewHolder, item: String, payloads: MutableList<Any>) { |
||||
|
||||
} |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package io.legado.app.ui.book.search |
||||
|
||||
import android.content.Context |
||||
import io.legado.app.R |
||||
import io.legado.app.base.adapter.ItemViewHolder |
||||
import io.legado.app.base.adapter.SimpleRecyclerAdapter |
||||
|
||||
|
||||
class HistoryKeyAdapter(context: Context) : |
||||
SimpleRecyclerAdapter<String>(context, R.layout.item_text) { |
||||
|
||||
override fun convert(holder: ItemViewHolder, item: String, payloads: MutableList<Any>) { |
||||
|
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue