Fix reader dialog colors

This commit is contained in:
Jobobby04 2022-02-12 11:31:32 -05:00
parent a0af459cfc
commit 0464ec0b59
3 changed files with 4 additions and 7 deletions

View File

@ -15,7 +15,7 @@ import eu.kanade.tachiyomi.util.system.dpToPx
import kotlinx.coroutines.launch
class ReaderChapterDialog(private val activity: ReaderActivity) : ReaderChapterAdapter.OnBookmarkClickListener {
private val binding = ReaderChaptersDialogBinding.inflate(activity.layoutInflater, null, false)
private val binding = ReaderChaptersDialogBinding.inflate(activity.layoutInflater)
var presenter: ReaderPresenter = activity.presenter
var adapter: FlexibleAdapter<ReaderChapterItem>? = null

View File

@ -4,11 +4,7 @@
android:id="@+id/reader_chapter_layout"
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="@drawable/list_item_selector_background"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
android:background="@android:color/transparent">
<TextView
android:id="@+id/chapter_title"

View File

@ -3,7 +3,8 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:orientation="vertical"
android:paddingTop="8dp">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/chapter_recycler"