This commit is contained in:
kunfei
2022-02-11 18:45:23 +08:00
parent 3f56a900db
commit 1d54332e4d
2 changed files with 32 additions and 14 deletions

View File

@@ -17,6 +17,7 @@
* 目录界面菜单添加替换开关,开启替换加载时间会长一些
* 书源校验添加规则失效分组,更新书源界面帮助文档
* 替换规则添加作用于标题和作用于正文
* 导出支持本地书籍再次导出
* 修复一些bug
**2022/02/09**

View File

@@ -33,17 +33,29 @@ class CacheAdapter(context: Context, private val callBack: CallBack) :
if (payloads.isEmpty()) {
tvName.text = item.name
tvAuthor.text = context.getString(R.string.author_show, item.getRealAuthor())
val cs = cacheChapters[item.bookUrl]
if (cs == null) {
tvDownload.setText(R.string.loading)
if (item.isLocalBook()) {
tvDownload.setText(R.string.local_book)
} else {
tvDownload.text =
context.getString(R.string.download_count, cs.size, item.totalChapterNum)
val cs = cacheChapters[item.bookUrl]
if (cs == null) {
tvDownload.setText(R.string.loading)
} else {
tvDownload.text =
context.getString(
R.string.download_count,
cs.size,
item.totalChapterNum
)
}
}
} else {
val cacheSize = cacheChapters[item.bookUrl]?.size ?: 0
tvDownload.text =
context.getString(R.string.download_count, cacheSize, item.totalChapterNum)
if (item.isLocalBook()) {
tvDownload.setText(R.string.local_book)
} else {
val cacheSize = cacheChapters[item.bookUrl]?.size ?: 0
tvDownload.text =
context.getString(R.string.download_count, cacheSize, item.totalChapterNum)
}
}
upDownloadIv(ivDownload, item)
upExportInfo(tvMsg, progressExport, item)
@@ -72,14 +84,19 @@ class CacheAdapter(context: Context, private val callBack: CallBack) :
}
private fun upDownloadIv(iv: ImageView, book: Book) {
CacheBook.cacheBookMap[book.bookUrl]?.let {
if (it.isRun()) {
iv.setImageResource(R.drawable.ic_stop_black_24dp)
} else {
if (book.isLocalBook()) {
iv.gone()
} else {
iv.visible()
CacheBook.cacheBookMap[book.bookUrl]?.let {
if (it.isRun()) {
iv.setImageResource(R.drawable.ic_stop_black_24dp)
} else {
iv.setImageResource(R.drawable.ic_play_24dp)
}
} ?: let {
iv.setImageResource(R.drawable.ic_play_24dp)
}
} ?: let {
iv.setImageResource(R.drawable.ic_play_24dp)
}
}