fix: reply text background color
This commit is contained in:
parent
b0b51c4347
commit
a3b1d3db57
11 changed files with 124 additions and 103 deletions
|
@ -58,7 +58,8 @@ class OfflineAnimeAdapter(
|
|||
if (style == 0) {
|
||||
val bannerView = view.findViewById<ImageView>(R.id.itemCompactBanner) // for large view
|
||||
val episodes = view.findViewById<TextView>(R.id.itemTotal)
|
||||
episodes.text = context.getString(R.string.episodes)
|
||||
val text = " ${context.getString(R.string.episodes)}"
|
||||
episodes.text = text
|
||||
bannerView.setImageURI(item.banner ?: item.image)
|
||||
totalEpisodes.text = item.totalEpisodeList
|
||||
} else if (style == 1) {
|
||||
|
|
|
@ -57,7 +57,8 @@ class OfflineMangaAdapter(
|
|||
if (style == 0) {
|
||||
val bannerView = view.findViewById<ImageView>(R.id.itemCompactBanner) // for large view
|
||||
val chapters = view.findViewById<TextView>(R.id.itemTotal)
|
||||
chapters.text = context.getString(R.string.chapters)
|
||||
val text = " ${context.getString(R.string.chapters)}"
|
||||
chapters.text = text
|
||||
bannerView.setImageURI(item.banner ?: item.image)
|
||||
totalChapter.text = item.totalChapter
|
||||
} else if (style == 1) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue