pull/32/head
parent
8cf52988a7
commit
ba3cdee267
@ -1,7 +0,0 @@ |
|||||||
package io.legado.app.constant |
|
||||||
|
|
||||||
object DbTable { |
|
||||||
const val books = "books" |
|
||||||
const val book_sources = "book_sources" |
|
||||||
const val replace_rules = "replace_rules" |
|
||||||
} |
|
@ -0,0 +1,24 @@ |
|||||||
|
package io.legado.app.ui.sourceedit |
||||||
|
|
||||||
|
import android.view.View |
||||||
|
import android.view.ViewGroup |
||||||
|
import androidx.recyclerview.widget.RecyclerView |
||||||
|
|
||||||
|
class SourceEditAdapter : RecyclerView.Adapter<SourceEditAdapter.MyViewHolder>() { |
||||||
|
|
||||||
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): MyViewHolder { |
||||||
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates. |
||||||
|
} |
||||||
|
|
||||||
|
override fun onBindViewHolder(holder: MyViewHolder, position: Int) { |
||||||
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates. |
||||||
|
} |
||||||
|
|
||||||
|
override fun getItemCount(): Int { |
||||||
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates. |
||||||
|
} |
||||||
|
|
||||||
|
class MyViewHolder(view: View) : RecyclerView.ViewHolder(view) { |
||||||
|
|
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue