Fix card background handling on older versions

This commit is contained in:
Ensar Sarajčić 2023-07-27 11:03:48 +02:00
parent c8f2f13b53
commit 1965df43f5

View File

@ -70,8 +70,13 @@ class OpenNoteAdapter(
} else { } else {
Color.BLACK Color.BLACK
} }
val cardBackground = if (context.config.isUsingSystemTheme) {
R.drawable.dialog_you_background
} else {
R.drawable.dialog_bg
}
open_note_item_holder.background = open_note_item_holder.background =
activity.resources.getColoredDrawableWithColor(R.drawable.dialog_you_background, cardBackgroundColor, LOWER_ALPHA_INT) activity.resources.getColoredDrawableWithColor(cardBackground, cardBackgroundColor, LOWER_ALPHA_INT)
} }
open_note_item_title.apply { open_note_item_title.apply {
text = note.title text = note.title