优化目录界面

This commit is contained in:
kunfei 2022-03-06 21:52:12 +08:00
parent f31a5a082d
commit b0f6312ebb
2 changed files with 5 additions and 6 deletions

View File

@ -25,7 +25,7 @@ class ChapterListAdapter(context: Context, val callback: Callback) :
DiffRecyclerAdapter<BookChapter, ItemChapterListBinding>(context) {
val cacheFileNames = hashSetOf<String>()
private val displayTitleMap = ConcurrentHashMap<Int, String>()
private val displayTitleMap = ConcurrentHashMap<String, String>()
override val diffItemCallback: DiffUtil.ItemCallback<BookChapter>
get() = object : DiffUtil.ItemCallback<BookChapter>() {
@ -80,8 +80,8 @@ class ChapterListAdapter(context: Context, val callback: Callback) :
if (!isActive) {
return@async
}
if (displayTitleMap[it.index] == null) {
displayTitleMap[it.index] = it.getDisplayTitle(replaceRules, useReplace)
if (displayTitleMap[it.url] == null) {
displayTitleMap[it.url] = it.getDisplayTitle(replaceRules, useReplace)
}
}
}
@ -92,12 +92,12 @@ class ChapterListAdapter(context: Context, val callback: Callback) :
}
private fun getDisplayTile(chapter: BookChapter): String {
var displayTile = displayTitleMap[chapter.index]
var displayTile = displayTitleMap[chapter.url]
if (displayTile != null) {
return displayTile
}
displayTile = chapter.getDisplayTitle(replaceRules, useReplace)
displayTitleMap[chapter.index] = displayTile
displayTitleMap[chapter.url] = displayTile
return displayTile
}

View File

@ -83,7 +83,6 @@ class TocActivity : VMBaseActivity<ActivityChapterListBinding, TocViewModel>() {
override fun onCompatOptionsItemSelected(item: MenuItem): Boolean {
when (item.itemId) {
R.id.menu_reverse_toc -> viewModel.reverseToc {
viewModel.chapterListCallBack?.clearDisplayTitle()
viewModel.chapterListCallBack?.upChapterList(searchView?.query?.toString())
setResult(RESULT_OK, Intent().apply {
putExtra("index", it.durChapterIndex)