commit
af400cfd7d
@ -0,0 +1,18 @@ |
|||||||
|
package io.legado.app.ui.importbook |
||||||
|
|
||||||
|
import android.content.Context |
||||||
|
import androidx.documentfile.provider.DocumentFile |
||||||
|
import io.legado.app.R |
||||||
|
import io.legado.app.base.adapter.ItemViewHolder |
||||||
|
import io.legado.app.base.adapter.SimpleRecyclerAdapter |
||||||
|
|
||||||
|
|
||||||
|
class ImportBookAdapter(context: Context) : |
||||||
|
SimpleRecyclerAdapter<DocumentFile>(context, R.layout.item_import_book) { |
||||||
|
|
||||||
|
|
||||||
|
override fun convert(holder: ItemViewHolder, item: DocumentFile, payloads: MutableList<Any>) { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,8 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||||
|
android:orientation="vertical" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="match_parent"> |
||||||
|
|
||||||
|
|
||||||
|
</LinearLayout> |
Loading…
Reference in new issue